Untitled
unknown
plain_text
a year ago
457 B
17
Indexable
$transactions = Transaction::query()
->with(
[
// with relationships
]
);
foreach ($transactions->lazyById(1000, 'id') as $transaction) {
$row = [
$transaction->id,
$transaction->amount,
jformat($transaction->created_at, true),
$transaction->statusLabelFa,
...
];
}
Editor is loading...
Leave a Comment