ダッシュボード画面の追加

This commit is contained in:
shibafu
2019-03-14 00:10:09 +09:00
parent f5fab4b3c1
commit e69adbfbc3
6 changed files with 55 additions and 0 deletions
@@ -0,0 +1,14 @@
<?php
namespace App\Http\Controllers\Admin;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
class DashboardController extends Controller
{
public function index()
{
return view('admin.dashboard');
}
}