はじめに
モデルを作成する
php artisan make:migration create_categories_table
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateCategoriesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('categories', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('categories');
}
}
php artisan migrate
php artisan make:model Category
Laravel adminのコントローラーを作成する
$ php artisan admin:make UserController --model=App\Models\User
Model does not exists !
- 正しい指定は下記のように「\」区切りでパスを指定すると作成に成功する
$ php artisan admin:make UserController --model=App\\Models\\User
App\Admin\Controllers\UserController created successfully.
Laravel-adminへのルーティング
app/Admin/routes.php
ファイルにルーティングを設定する
$router->resource('/category', CategoryController::class);
動作確認