| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | public function columns(): array |
||
| 19 | { |
||
| 20 | return [ |
||
| 21 | Column::make('Id', 'id') |
||
| 22 | ->sortable(), |
||
| 23 | Column::make('Particular', 'particular') |
||
| 24 | ->sortable(), |
||
| 25 | Column::make('Amount', 'amount') |
||
| 26 | ->sortable(), |
||
| 27 | Column::make('Type', 'type') |
||
| 28 | ->sortable(), |
||
| 29 | Column::make('Paymentable type', 'paymentable_type') |
||
| 30 | ->sortable(), |
||
| 31 | Column::make('Created at', 'created_at') |
||
| 32 | ->sortable(), |
||
| 33 | Column::make('Updated at', 'updated_at') |
||
| 34 | ->sortable(), |
||
| 35 | ]; |
||
| 38 |