|
@@ -33,7 +33,7 @@ class SiteAlbumLogController extends AdminController
|
|
{
|
|
{
|
|
return Grid::make(new SiteAlbumLog(), function (Grid $grid) {
|
|
return Grid::make(new SiteAlbumLog(), function (Grid $grid) {
|
|
$grid->column('id')->sortable();
|
|
$grid->column('id')->sortable();
|
|
- $grid->column('nick_name');
|
|
|
|
|
|
+ $grid->column('user_name');
|
|
$grid->column('action');
|
|
$grid->column('action');
|
|
$grid->column('model');
|
|
$grid->column('model');
|
|
$grid->column('content')->display(function ($value) {
|
|
$grid->column('content')->display(function ($value) {
|
|
@@ -72,7 +72,7 @@ class SiteAlbumLogController extends AdminController
|
|
{
|
|
{
|
|
return Show::make($id, new SiteAlbumLog(), function (Show $show) {
|
|
return Show::make($id, new SiteAlbumLog(), function (Show $show) {
|
|
$show->field('id');
|
|
$show->field('id');
|
|
- $show->field('nick_name');
|
|
|
|
|
|
+ $show->field('user_name');
|
|
$show->field('action');
|
|
$show->field('action');
|
|
$show->field('model');
|
|
$show->field('model');
|
|
$show->field('content');
|
|
$show->field('content');
|