public function index() { $rol = Rol::paginate(); $data = array(array('nombre', 'descripcion')); foreach ($rol as $rols) { $datos = array(); array_push($datos, $rols->nombre, $rols->descripcion); array_push($data, $datos); } Excel::create('Rol', function ($excel) use($data) { $excel->sheet('Sheetname', function ($sheet) use($data) { $sheet->fromArray($data); }); })->download('csv'); }