Laravel 8 Jetstream Vue - Js + CRUD: by Ahmad Safar @faropedia
Laravel 8 Jetstream Vue - Js + CRUD: by Ahmad Safar @faropedia
js + CRUD
Laravel v8 Installation:
https://laravel.com/docs/8.x#the-laravel-installer
Jetstream v2 Installation: https://jetstream.laravel.com/2.x/installation.html
Before we start:
Link storage first: php artisan storage:link
.editorconfig: [*.{js,vue,yml,yaml}]
webpack.mix.js:
Enable mix.version(); on development mode
Disable Laravel Notifications using mix.disableNotifications();
config/jetstream.php: enable photo features
config/app.php: change timezone to Asia/Jakarta
Add role column in users migration: $table->string('role')->default('user’);
Create database first, then: php artisan migrate, npm install, npm run hot