/
home
/
sjslayjy
/
public_html
/
assets
/
app
/
Exports
/
Upload File
HOME
<?php namespace App\Exports; //use Maatwebsite\Excel\Concerns\FromCollection; use Illuminate\Contracts\View\View; use Maatwebsite\Excel\Concerns\FromView; use DB; class ResignedTechStockExport implements FromView { public $techStocks; function __construct($techStocks = null) { $this->techStocks = $techStocks; } /** * @return \Illuminate\Support\Collection */ public function view(): View { return view('exports.resigned-tech-stock-excel-export', [ 'stocks' => $this->techStocks ]); } }