Tuesday, March 7, 2017

Change laravel welcome file name

I changed the files path after i installed laravel framework like this:

from: resources/views/welcome.bandle.php

to resources/views/admin/index.php

and the routes file to:

Route::get('/admin', function () {
    return view('admin/index');
});

the url is working but all the larvael render not working like this:

enter image description here

what i need to do?

tnx a lot.



via user165210

Advertisement