17 lines
379 B
PHP
17 lines
379 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\PusatMengundi;
|
|
use Illuminate\View\View;
|
|
|
|
class PublicApplicationPlaceholderController extends Controller
|
|
{
|
|
public function create(PusatMengundi $pusatMengundi): View
|
|
{
|
|
return view('public.application-placeholder', [
|
|
'pusatMengundi' => $pusatMengundi->load('daerahMengundi'),
|
|
]);
|
|
}
|
|
}
|