add BerandaController for admin dashboard
This commit is contained in:
parent
6013c807b0
commit
b48da03e18
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class BerandaController extends Controller
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
|
||||
return view('admin.beranda-admin');
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue