20 lines
358 B
PHP
20 lines
358 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use App\HargaEmas;
|
|
|
|
class HargaEmasController extends Controller
|
|
{
|
|
public function __construct()
|
|
{
|
|
$this->middleware('auth');
|
|
}
|
|
|
|
public function index(){
|
|
$harga_emas = HargaEmas::all();
|
|
return view('harga_emas.index',compact('harga_emas'));
|
|
}
|
|
}
|