Initial commit

This commit is contained in:
Zakwan Hamdan
2020-10-19 10:12:55 +08:00
commit 60afe5d1ba
300 changed files with 144332 additions and 0 deletions
@@ -0,0 +1,19 @@
<?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'));
}
}