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:
what i need to do?
tnx a lot.
via user165210