Migrate Kohana to Laravel

0

In kohana bootstrap I have the following configuration

Kohana::init(array(
    'base_url'  => 'myapp',
));

How do I migrate to Laravel?

Because in Laravel I have the following url www.example.com/myapp/ and I can not get the css at www.example.com/myapp/css/app.css

{{url("/")}} always prints www.example.com and www.example.com/myapp /

I do not know where to setup this in Laravel

    
asked by anonymous 21.03.2017 / 15:42

0 answers