Files
kaunter/app/Http/Controllers/HargaEmasController.php
T
Zakwan Hamdan 60afe5d1ba Initial commit
2020-10-19 10:12:55 +08:00

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'));
}
}