Untitled
unknown
plain_text
2 months ago
457 B
13
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