19 lines
461 B
PHP
19 lines
461 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Services\DummyDataService;
|
|
use Illuminate\Http\Request;
|
|
|
|
class PengumumanController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
$semuaPengumuman = DummyDataService::getPengumuman();
|
|
return view('admin.pengumuman.index', [
|
|
'pageTitle' => 'Manajemen Pengumuman',
|
|
'semuaPengumuman' => $semuaPengumuman,
|
|
]);
|
|
}
|
|
} |