add BerandaController for admin dashboard

This commit is contained in:
LailaWulandarii 2025-12-15 21:03:43 +07:00
parent 6013c807b0
commit b48da03e18
1 changed files with 15 additions and 0 deletions

View File

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