Text column no record(s)

$invoices = Invoice::select('id as item_id', 'invoice_to as fr_id', 'transaction_type', 'created_at', 'invoice_amount as amount', DB::raw("'invoice' as entry_type"), 'closing_balance_amount') ->where('invoice_to', 5)->get(); return $invoices->toQuery(); Above code used in getTableQuery , can we show data in Table Column using TextColumn
Was this page helpful?