/
home
/
sjslayjy
/
public_html
/
assets
/
app
/
Exports
/
Upload File
HOME
<?php namespace App\Exports; use App\User; use Illuminate\Contracts\View\View; use Maatwebsite\Excel\Concerns\FromView; use DB; class StnExport implements FromView { public $stn_items; function __construct($stns = null) { $this->stn_items = $stns; } public function view(): View { return view('exports.stn-report', [ 'stn_items' => $this->stn_items ]); } }