42 lines
787 B
PHP
42 lines
787 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
class HomeController extends Controller
|
|
{
|
|
/**
|
|
* Create a new controller instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->middleware('auth');
|
|
}
|
|
|
|
/**
|
|
* Show the application dashboard.
|
|
*
|
|
* @return \Illuminate\Contracts\Support\Renderable
|
|
*/
|
|
public function dashboard()
|
|
{
|
|
$data['title'] = 'Dashboard';
|
|
return view('dashboard',$data);
|
|
}
|
|
|
|
function profile(){
|
|
return view('admin.profile.profile');
|
|
}
|
|
|
|
function identitas_lokasi(){
|
|
return view('admin.identitas_lokasi.identitas_lokasi');
|
|
}
|
|
|
|
function data_dasar(){
|
|
return view('admin.data_dasar.data_dasar');
|
|
}
|
|
}
|