Someone knows how to change the welcome.balde.php
that has the default laravel and change it to home.blade.php
.
I tried configuring it in the reoutes.php but I still get the welcome, do you have to make a configuration to run?
<?php
Route::get('/', function(){
//return View::make('home');
return '55';
});