Setup Laravel to use sqlite
Setup .env
Open the .env file and change the following settings:
DB_CONNECTION=sqlite
DB_DATABASE=database/database.sqlite
and set
SESSION_DRIVER=file
to file.
After this run php artisan migrate and php artisan serve
Setup .env
Open the .env file and change the following settings:
DB_CONNECTION=sqlite
DB_DATABASE=database/database.sqlite
and set
SESSION_DRIVER=file
to file.
After this run php artisan migrate and php artisan serve