Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/mpos.codeskitter.site/Modules/Business/App/Exports/
Upload File :
Current File : /home/users/unlimited/www/mpos.codeskitter.site/Modules/Business/App/Exports/ExportCurrentStock.php

<?php

namespace Modules\Business\App\Exports;

use App\Models\Party;
use App\Models\Product;
use Illuminate\Contracts\View\View;
use Maatwebsite\Excel\Concerns\FromView;

class ExportCurrentStock implements FromView
{
    public function view(): View
    {
        return view('business::stocks.excel-csv', [
           'stocks' => Product::where('business_id', auth()->user()->business_id)->latest()->get()
        ]);
    }
}