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

This commit is contained in:
shibafu
2019-02-11 15:35:31 +09:00
parent f5fab4b3c1
commit e69adbfbc3
6 changed files with 55 additions and 0 deletions

View File

@@ -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');
}
}