/
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 StngstExport implements FromView { public $stn_items; function __construct($stn_items = null) { $this->stn_items = $stn_items; } public function view(): View { return view('exports.stn-gst-format', [ 'stn_items' => $this->stn_items ]); } }