migrate to gtea from bistbucket

This commit is contained in:
2026-03-15 17:08:23 +07:00
commit 129ca2260c
3716 changed files with 566316 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?php
namespace Modules\Business\App\Exports;
use Maatwebsite\Excel\Concerns\FromView;
use Illuminate\Contracts\View\View;
class ExportSingleSupplierLedger implements FromView
{
public $ledger;
public $party;
public function __construct($ledger, $party)
{
$this->ledger = $ledger;
$this->party = $party;
}
public function view(): View
{
return view('business::party-reports.supplier-ledger.show-details.excel-csv', [
'ledger' => $this->ledger,
'party' => $this->party,
]);
}
}