数据详情基本使用

Dcat\Admin\Show用来显示数据详情,先来个例子,数据库中有posts表:

  1. CREATE TABLE `posts` (
  2. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  3. `author_id` int(10) unsigned NOT NULL ,
  4. `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  5. `content` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  6. `rate` int(255) COLLATE utf8_unicode_ci NOT NULL,
  7. `release_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  8. `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  9. `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  10. PRIMARY KEY (`id`)
  11. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

对应的数据模型为App\Models\Post,数据仓库为App\Admin\Repositories\Post,下面的代码可以显示posts表的数据详情:

<?php

namespace App\Admin\Controllers;

use App\Http\Controllers\Controller;
use App\Admin\Repositories\Post;
use Dcat\Admin\Layout\Content;
use Dcat\Admin\Show;
use Dcat\Admin\Admin;

class PostController extends Controller
{
    public function show($id, Content $content)
    {
        return $content->header('Post')
            ->description('详情')
            ->body(Show::make($id, new Post(), function (Show $show) {
                $show->id('ID');
                $show->title('标题');
                $show->content('内容');
                $show->rate();
                $show->created_at();
                $show->updated_at();
                $show->release_at();
            }));
    }
}

基本使用方法

HTML内容转义(unescape)

为了防止XSS攻击, 默认输出的内容都会使用HTML转义,如果你不想转义输出HTML,可以调用unescape方法:

<?php

$show->avatar()->unescape()->as(function ($avatar) {

    return "<img src='{$avatar}' />";

});

字段宽度

字段宽度默认值为“3”,可以设置1-12之间的数字。

<?php

$show->created_at->width(4);

面板的样式和标题

<?php

$show->panel()
    ->style('danger')
    ->title('post基本信息...');

style的取值可以是primary、info、danger、warning、default

工具栏

面板右上角默认有三个按钮编辑、删除、列表,可以分别用下面的方式关掉它们:

<?php

$show->panel()
     ->tools(function ($tools) {
         $tools->disableEdit();
         $tools->disableList();
         $tools->disableDelete();
         // 显示快捷编辑按钮
         $tools->showQuickEdit();
     });

自定义复杂工具按钮

请参考文档数据详情动作

多列布局

使用

Since v1.3.4

<?php

$show->row(function (Show\Row $show) {
    $show->width(3)->id;
    $show->width(3)->name;
    $show->width(5)->email;
});

$show->row(function (Show\Row $show) {
    $show->width(5)->email_verified_at;
    $show->created_at;
    $show->updated_at;
});

$show->row(function (Show\Row $show) {
    $show->width(3)->field('profile.first_name');
    $show->field('profile.last_name');
    $show->width(3)->field('profile.postcode');
});

效果
基本使用 - 图1