To see other previews, look at the bottom.
-
Laravel10
-
Vue3
-
Inertia
-
Tailwind
-
Authentication(Login/Register)
-
View UserList(DB)
-
Save User(DB)
-
Edit User(DB)
-
Delete User(DB)
composer install
npm install
php artisan key:generate
you need create .env from .env.example if not exists .env file
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=YourDBName
DB_USERNAME=YourDBUserName
DB_PASSWORD=YourDBPassword
php artisan migrate
php artisan db:seed --class=DummyDataSeeder
DummyDataSeeder will generate user data(100 records)
php artisan serve
npm run dev
http://127.0.0.1:8000/login
You can log in with the following information:
E-mail:
[email protected]
Password:
password
The Laravel framework is open-sourced software licensed under the MIT license.