Пример #1
0
 public function index()
 {
     $this->data['beneficiarios'] = Beneficiario::all();
     $this->data['responsables'] = Personal::where('tipoPersonal', '=', '');
     Debugbar::info($this->data['beneficiarios']);
     $this->data['beneficiariosActive'] = 'active';
     return View::make('admin.beneficiarios.index', $this->data);
 }