在 Dcat Admin 中,可以在后台代码中动态向页面中添加 js 或 css 代码,以便满足我们的额外需求,具体方法如下:

    public function index()
    {

        //添加自定义js代码
        Admin::script(
            <<<JS
    console.log('码农资源网(www.codesou.cn)');
JS            
        );
        //添加自定义css代码
        Admin::style(
            <<<CSS
    body {
        color: #333;
    }
CSS            
        );

    }