所以我在刀片視圖文件上有一個(gè)表,我已成功將其導(dǎo)出到 Excel 文件中?,F(xiàn)在我想導(dǎo)出而不導(dǎo)出“操作”列。我該怎么做?我在下面附上了我的代碼和刀片文件,它工作得很好。我只想導(dǎo)出除操作列之外的所有內(nèi)容,因?yàn)樗糜跀?shù)據(jù)庫(kù)操作的按鈕這是我的出口類(lèi)別代碼:public function view(): View{ return view ('ims.view_inventory_history_table', [ 'data' => inbound_history::all() ]);}public function headings(): array{ return [ 'ID', 'Warehouse', 'SKU', 'Child SKU', 'Units', 'Invoice No.', 'Container No.', 'Entry Date' ];}/** * @return array */public function registerEvents(): array{ return [ AfterSheet::class => function(AfterSheet $event) { $cellRange = 'A1:W1'; // All headers $event->sheet->getDelegate()->getStyle($cellRange)->getFont()->setSize(14); }, ];}}這是我的控制器功能:public function export_view(){ return Excel::download(new inboundHistory(), 'inboundHistory.xlsx');}這是我的路線:Route::Get('inbound_history/export_view' ,'imsController@export_view')->name('inbound_history.export_view');
1 回答

12345678_0001
TA貢獻(xiàn)1802條經(jīng)驗(yàn) 獲得超5個(gè)贊
我不知道我是否正確理解了一切,但你為什么不做這樣的事情:
$isView當(dāng)您想要為用戶創(chuàng)建視圖時(shí),將附加變量傳遞到您的刀片模板,例如。
在 Blade.php 模板中,您可以執(zhí)行以下操作:
@isset($isView)
<th class="disabled-sorting text-right" style="width:12%">Actions</th>
@endisset
// do the same @isset test for the corresponding <td> element
當(dāng)您想要將其呈現(xiàn)為 Excel 時(shí),您只需不傳遞此變量并且不會(huì)呈現(xiàn)該列。
- 1 回答
- 0 關(guān)注
- 147 瀏覽
添加回答
舉報(bào)
0/150
提交
取消