efbe
b815d0396f
All checks were successful
Run Action to Production / run pull to sync on target message (push) Has been skipped
17 lines
208 B
PHP
17 lines
208 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
class AdminController extends Controller
|
|
{
|
|
|
|
public function index(){
|
|
return view('admin.index',['title'=> 'Admin Dashboard']);
|
|
}
|
|
|
|
|
|
}
|