Пример #1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $data = Gudang::get(['id', 'nama', 'kota', 'status'])->toArray();
     //return view('pre', compact('data'));
     return view('gudang.index', compact('data'));
 }