したいこと
shopsテーブルに登録してあるデータを
0. ユーザー向け
0. 管理者向け
で扱えるようにしたいです。
現在はユーザー向けのindexとshowでは一覧と個別それぞれちゃんと表示されています。
ですが、管理者向けのログインしたあとはindexのみちゃんと表示されてshowではデータが表示されません。
admin/show.blade.php自体はちゃんと表示されており、データの受け渡しがうまくいっていないようです。
これを解決したいのです、ご指摘をお願いいたします。
試したこと
それぞれにコントローラとビュー、web.phpを用意
models/Shop.phpを用意
ユーザー向け
controllers/ShopController.php
views/shops/index.blade.php
管理者向け
controllers/admin/ShopController.php
views/admins/index.blade.php
web.php
web.php Route::resource('shops', 'ShopController'); Auth::routes(); Route::group(['middleware' => 'auth'], function(){ Route::resource('admins', 'admin\ShopController'); });
admin
admin/ShopController public function index() { $shops = Shop::orderBy('id', 'desc')->paginate(10); return view('shops.index', compact('shops')); } public function show(Shop $shop) { return view('admins.show', compact('shop')); }
views/admins/index.blade.php @foreach($shops as $shop) <tr> <td>{{ $shop->id }}</td> <td>{{ $shop->shop_name }}</td> <td> <a href="{{ route('admins.show', $shop) }}">表示</a> </td> </tr> @endforeach </table>
views/admins/show.blade.php <table class="table"> <tr> <th class="w-25">店名</th> <td>{{ $shop->shop_name }}</td> </tr> <tr> <th>url</th> <td><a href="{{ $shop->homepage }}">{{ $shop->homepage }}</a></td> </tr> <tr> <th>概要</th> <td>{{ $shop->description }}</td> </tr> </table>
shops
ShopController.php public function index() { $shops = Shop::orderBy('id', 'desc')->paginate(10); return view('shops.index', compact('shops')); } public function show(Shop $shop) { return view('shops.show', compact('shop')); }
shops/index.blade.php @section('content') shops/index.blade.php @foreach($shops as $shop) <tr> <td>{{ $shop->id }}</td> <td>{{ $shop->shop_name }}</td> <td> <a href="{{ route('shops.show', $shop) }}">表示</a> </td> </tr> @endforeach
shops/show.blade.php <table class="table"> <tr> <th class="w-25">店名</th> <td>{{ $shop->shop_name }}</td> </tr> <tr> <th>url</th> <td><a href="{{ $shop->url }}">{{ $shop->url }}</a></td> </tr> <tr> <th>概要</th> <td>{{ $shop->address }}</td> </tr> <tr> <th>作成日</th> </tr> </table>
あなたの回答
tips
プレビュー