/** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { $batchs = Batch::personalize()->get(); return view('batch.index', ['batchs' => $batchs]); }
/** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { $medications = Medication::personalize()->get(); $batchs = Batch::personalize()->get(); return view('medication.index', ['medications' => $medications, 'batchs' => $batchs]); }