XBisATrouble

876 经验值

travic CI 必须要有测试单元才能跑通吗?

报错
Call to undefined method laravist\Hasher\MD5Hasher::isDeferred()

console里报错,Uncaught Error: only one instance of babel-polyfill is allowed at Object.eval (eval at <anonymous>。
然后会有一个bug,做完一次操作之后如果再去点修改头像不能加载出完整的组件。

请问如果要实现登录admin后访问admin/login跳转回admin/dash该怎么做,现在的情况是会跳转到/home
————————
2017年5月3日09:12:21
已解决
原因是我user和admin界面公用的一个模板控制器,所以在guest中修改
···php

   if (Auth::guard()->check()) {
        $url = '/home';
        return redirect($url);
    }

    if (Auth::guard('admin')->check()) {
        $url = '/admin/dash';
        return redirect($url);
    }

···

对的,文章删除时相应有外键关系的表单都要级联删除

您好,ueditor里设置了qiniu,然后laravel-filesystem-qiniu也配置正常,但是打开ueditor,单图上传为灰色,多图上传打开本地上传标签中报错,后端配置项没有正常加载,上传插件不能正常使用!
tim 20170423215416

没有用,我的数据库实际表名是users。
如果store方法里参数是UserSignUpRequest $request就会报错
但如果用Request $request就可以正常打印

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'course.user' doesn't exist (SQL: select count(*) as aggregate from user where email = XBisATrouble@gmail.com)

依赖注入UserSignUpRequest $request后dd request出现这个,请问这个user表是在哪儿设置的

请问如何自定义dingoapi的默认报错,比如

{
"message": "404 Not Found",
"status_code": 404
}