Fix sorting vendors by date created

This commit is contained in:
Hillel Coren 2017-08-16 10:56:28 +03:00
parent d63cbb237c
commit 35562077c8
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ class VendorDatatable extends EntityDatatable
}, },
], ],
[ [
'client_created_at', 'created_at',
function ($model) { function ($model) {
return Utils::timestampToDateString(strtotime($model->created_at)); return Utils::timestampToDateString(strtotime($model->created_at));
}, },

View File

@ -2007,7 +2007,7 @@ $LANG = array(
'toggle_menu' => 'Toggle Menu', 'toggle_menu' => 'Toggle Menu',
'new_...' => 'New ...', 'new_...' => 'New ...',
'list_...' => 'List ...', 'list_...' => 'List ...',
'created_at' => 'Created', 'created_at' => 'Date Created',
'contact_us' => 'Contact Us', 'contact_us' => 'Contact Us',
'support_forum' => 'Support Forum', 'support_forum' => 'Support Forum',
'user_guide' => 'User Guide', 'user_guide' => 'User Guide',