Beispiel #1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $animales = Animales::paginate(10);
     $potreros = Potreros::get()->all();
     return view('animales.index', ['animales' => $animales, 'potreros' => $potreros]);
 }
Beispiel #2
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $i = 0;
     $nacimientos = Animales::paginate(10);
     return view('nacimientos.index', ['nacimientos' => $nacimientos, 'i' => $i]);
 }