Laravel Nova Tut
Создание моделей и ресурсов Laravel/Nova
php artisan make:model MyResourceName -m
php artisan nova:resource MyResourceName
php artisan migrate
Создание полей в бд чтобы не было ошибок
$table->timestamp('created_at')->useCurrent();
$table->timestamp('updated_at')->useCurrent();
$table->timestamp('update_at'); must be first
$table->integer('created_by');
$table->timestamp('creation_at');
Login Panel
Not registered? Register now!