Laravel does not load Visual part

0

When I enter my local host ( link ) the page loads but the design does not.

NOTE: I just put php artisan make: auth no more

    
asked by anonymous 27.06.2017 / 00:04

1 answer

1

Press Ctrl + U and check the source code for your application.

It is not finding style files defined between <head></head> . They are on the wrong track for some reason.

In particular the bootstrap.min.css file

In Laravel 5 you can try:

<link rel="stylesheet" href="{{ URL::asset('assets/css/bootstrap.min.css') }}">
    
27.06.2017 / 02:43