pintu2/app/Http/Controllers/LayananPengajuanDpuDpaController.php
2024-02-27 22:53:57 +07:00

21 lines
369 B
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class LayananPengajuanDpuDpaController extends Controller
{
public function index(){
return view('layanan-dpudpa.index',['title' => 'Pengajuan DPU/DPA | Admin Dashboard']);
}
public function tambah(){
return view('layanan-dpudpa.tambah');
}
public function store(){
return "done";
}
}