Пример #1
0
 public function viewImages()
 {
     $imDets = Items::all();
     return view('pages/home1')->with('imDets', $imDets);
     //        return $imDets;
     //        //return 'hello';
     //        $imDets = 'hello';
     //        return view('pages/home')->with('imDets',$imDets);
 }
Пример #2
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $data['item'] = Items::all();
     return view('admin.item', $data);
 }
Пример #3
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     return $this->success(Items::all());
 }