Answers for "clear laravel cache and clear vue"

PHP
14

laravel clear cache

php artisan cache:clear
php artisan route:clear
php artisan config:clear 
php artisan view:clear
Posted by: Guest on March-30-2020
0

clear laravel cache and clear vue

I had the same problem and to solve it add version where you include your vue frontend file,do it like this it will never cache again:

<script src="{{ asset('js/app.js?version='.date("ymdhis").'') }}"></script>
Posted by: Guest on September-23-2021

Browse Popular Code Answers by Language