headers->set('Authorization', 'Bearer '.$token); } public function export(Request $request) { $exportsPendingArrangementDeliveryList = new ExportsParcelPostcodes($request); $response = $exportsPendingArrangementDeliveryList->download('parcel-postcodes.xls', Excel::XLS, ['Content-Type' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet']); ob_end_clean(); return $response; } }