penambahan slug pada status permohonan

This commit is contained in:
Daeng Deni Mardaeni
2024-08-27 10:23:32 +07:00
parent fec80bfa1c
commit 3c59943a08
4 changed files with 7 additions and 2 deletions

View File

@@ -22,6 +22,7 @@
return [
$row->id,
$row->name,
$row->slug,
$row->description,
$row->status,
$row->created_at
@@ -34,6 +35,7 @@
return [
'ID',
'Name',
'Slug',
'Description',
'Status',
'Created At'
@@ -45,7 +47,7 @@
{
return [
'A' => NumberFormat::FORMAT_NUMBER,
'E' => NumberFormat::FORMAT_DATE_DATETIME
'F' => NumberFormat::FORMAT_DATE_DATETIME
];
}
}