這篇文章主要為大家展示了“Laravel-excel3.1怎么用”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“Laravel-excel3.1怎么用”這篇文章吧。
10年積累的成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶對(duì)網(wǎng)站的新想法和需求。提供各種問題對(duì)應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先網(wǎng)站設(shè)計(jì)后付款的網(wǎng)站建設(shè)流程,更有清水河免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
路由定義為GET
Route::get('/export', [OrderController::class, 'export']);
控制器轉(zhuǎn)發(fā)
public function export(Request $request): BinaryFileResponse{ return Excel::download(new OrderExport($request->get('status', -1)), 'order.xlsx');}
業(yè)務(wù)代碼
status = $status; } /** * 數(shù)據(jù)源 * @return Collection */ public function collection(): Collection { $query = Order::query(); if ($this->status != -1) { $query->where('status', $this->status); } return $query->get(); } /** * 自定義表頭 * @return string[] */ public function headings(): array { return [ '編號(hào)', '創(chuàng)建人', '中隊(duì)長(zhǎng)', '人員', '名稱', '備注', '狀態(tài)', '創(chuàng)建時(shí)間', '更新時(shí)間' ]; } /** * 設(shè)置單元格時(shí)間格式 * @return array */ public function columnFormats(): array { return [ 'H' => NumberFormat::FORMAT_DATE_YYYYMMDD, 'I' => NumberFormat::FORMAT_DATE_YYYYMMDD, ]; } /** * 自定義數(shù)據(jù)列 * @param mixed $row * @return array */ public function map($row): array { return [ $row->id, $row->founder->name ?? '無', $row->squadron->name ?? '無', $row->player->name ?? '無', $row->name, $row->remark ?: '無', $this->statusMap($row->status), Date::dateTimeToExcel($row->created_at), Date::dateTimeToExcel($row->updated_at), ]; } /** * 狀態(tài)轉(zhuǎn)化 * @param $status * @return string */ public function statusMap($status): string { switch ($status) { case 0: $statusText = '待處理'; break; case 1: $statusText = '處理中'; break; case 2: $statusText = '待審核'; break; case 3: $statusText = '已完成'; break; default: $statusText = '未知'; } return $statusText; } }
以上是“Laravel-excel3.1怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!