Added uom column and disabled 'deleted_at' column by default
This commit is contained in:
@@ -22,6 +22,8 @@ class ItemExporter extends Exporter
|
|||||||
->label('DESCRIPTION'),
|
->label('DESCRIPTION'),
|
||||||
ExportColumn::make('hourly_quantity')
|
ExportColumn::make('hourly_quantity')
|
||||||
->label('HOURLY QUANTITY'),
|
->label('HOURLY QUANTITY'),
|
||||||
|
ExportColumn::make('uom')
|
||||||
|
->label('UNIT OF MEASURE'),
|
||||||
ExportColumn::make('plant.name')
|
ExportColumn::make('plant.name')
|
||||||
->label('PLANT'),
|
->label('PLANT'),
|
||||||
ExportColumn::make('created_at')
|
ExportColumn::make('created_at')
|
||||||
@@ -29,7 +31,7 @@ class ItemExporter extends Exporter
|
|||||||
ExportColumn::make('updated_at')
|
ExportColumn::make('updated_at')
|
||||||
->label('UPDATED AT'),
|
->label('UPDATED AT'),
|
||||||
ExportColumn::make('deleted_at')
|
ExportColumn::make('deleted_at')
|
||||||
// ->enabledByDefault(false)
|
->enabledByDefault(false)
|
||||||
->label('DELETED AT'),
|
->label('DELETED AT'),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user