Commit 889d9ba1 authored by Nicolas Widart's avatar Nicolas Widart

Merge commit '51d9c090'

* commit '51d9c090':
  Squashed 'Modules/Core/' changes from b620e93..3c53b2a
parents 1c7f767a 51d9c090
......@@ -36,6 +36,6 @@ CKEDITOR.editorConfig = function( config ) {
// Make dialogs simpler.
config.removeDialogTabs = 'image:advanced;link:advanced';
config.filebrowserBrowseUrl = '/backend/files',
config.filebrowserBrowseUrl = '/admin/grid-files',
config.filebrowserUploadUrl = '/backend/files/upload'
};
......@@ -36,7 +36,7 @@ abstract class EloquentBaseRepository implements BaseRepository
*/
public function all()
{
return $this->model->all();
return $this->model->orderBy('created_at', 'DESC')->get();
}
/**
......
......@@ -8,6 +8,7 @@ return [
'table' => [
'created at' => 'Created at',
'actions' => 'Actions',
'thumbnail' => 'Thumbnail',
],
'tab' => [
'english' => 'English',
......
......@@ -8,6 +8,7 @@ return [
'table' => [
'created at' => 'Crée à',
'actions' => 'Actions',
'thumbnail' => 'Vignette',
],
'button' => [
'cancel' => 'Annuler',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment