This is an implementation of Laravel CRUD tutorial. A blog about this can be found here: Temporary Signed URLs in Laravel for Secure Password Resets | Fajarwz.
composer install
cp .env.example .env
php artisan key:generate
- Open
.env
file - Create a database and connect it with Laravel with filling the DB name in
DB_DATABASE
key - Adjust the
DB_USERNAME
- Adjust the
DB_PASSWORD
php artisan migrate
Run local web server
php artisan serve