2023-08-19から1日間の記事一覧

多対多リレーション

artisan make:migration create_roles_users_table --create=role_user 中間テーブルは、2つのモデルのモデル名をアルファベット順に並べるというルールがある。 【User.php】 public function roles() { return $this->belongsToMany(Role::class); } 【Ro…

主なsail artisan

sail artisan make:migration add_column_user_id_to_posts_table --table=posts sail artisan make:model Post -m sail artisan make:controller PostController --resource --model=Post

編集するファイルの在りか

ログイン後の画面app/Providers/RouteServiceProvide.php メニューの追加resources/views/layoutsの中のnavigation.blade.php ログインと登録ページへのリンクを追加resources/views/layouts/guest.blade.php ログイン画面・登録画面のロゴresources/views/c…