コード例 #1
0
 public function index()
 {
     // ambil semua data
     $kas = Kas::with('perkiraan')->get();
     // $kas = Kas::orderBy('id','desc')->get();
     //$kas = Kas::where('kode_kas', '100-01')->get();
     return view('kas.index', compact('kas'));
 }
コード例 #2
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     //
     $kas = Kas::with('customer')->get();
     return View('kas.index')->with('kas', $kas);
 }