I've just installed Laravel 6.0.2. I then created authentication using the following command.
composer require laravel/ui
php artisan ui:auth
Now, I run the login page and it displays like the following.
Now I'm setting up the Layouts.php files.
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
<script src="{{ asset('js/app.js') }}" defer></script>
I tried this one as well.
<link href="{{ asset('public/css/app.css') }}" rel="stylesheet">
<script src="{{ asset('public/js/app.js') }}" defer></script>
Before Laravel 6 the folder of CSS and JS exists in public folder, but now I can't find that folder. Can anyone tell me {{ asset('css/app.css') }} what is the location of this asset in Laravel 6?
