mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
Fixed date formatting in document list
This commit is contained in:
parent
94331c2858
commit
7599edbc8c
@ -217,7 +217,7 @@ class DocumentRepository extends BaseRepository
|
||||
)->toHtml();
|
||||
})
|
||||
->addColumn('document_date', function ($model) {
|
||||
return Utils::fromSqlDate($model->created_at);
|
||||
return Utils::dateToString($model->created_at);
|
||||
})
|
||||
->addColumn('document_size', function ($model) {
|
||||
return Form::human_filesize($model->size);
|
||||
|
Loading…
x
Reference in New Issue
Block a user