1
In kohana bootstrap I have the following configuration
Kohana::init(array(
'base_url' => 'myapp',
));
How I migrate her to the Laravel ?
Because in Laravel I have the following url www.exe.com/myapp/ and I can’t get the css in www.example.com/myapp/css/app.css
{{url("/")}}
always prints www.example.with and not www.example.com/myapp/
I don’t know where to set this up in Laravel
What version of the Laravel you are using?
– Miguel
5.4 is the version of the Laravel
– Rafael
In the
Laravel
is different the route mode, this will surely not have satisfactory result as in theKohana
– novic