几个php laravel的问题,求助


1.


 abort(404, 'Unauthorized action.');

会抛出一个错误,显示 404.blade.php 视图文件,我该如何在这个视图文件中输出 Unauthorized action. ?

2.
如何获得当前执行的控制器和方法名称?
在controller中用
echo Route::currentRouteAction();

结果报错了:
图片描述

3.
Route::controllers(['test' => 'TestController']);

这样设置路由必须在控制器中为每个方法设置get/post/等等的方式吗?

4.
<?php echo url('/login');?>

会输出url,可是我用的是https应该怎么设置?

5.
自定义函数放哪儿,看这个文章中写的需要 composer dump-autoload ,可能有些时候只有FRP而没有SSH权限还有什么办法吗?
http://laravel.so/tricks/e81a15277236d35feb19ad5b86427bdc

laravel php-laravel laravel5.1 laravel5 laravel视图

天下都是百合 9 years, 5 months ago
  1. 楼上貌似不错

  2. use Route ;

  3. 楼上

最后,如果有兴趣,可以看看我近期录的Laravel 5.1的系列视频

https://laravist.com/series/laravel-5-basic

不知火一树 answered 9 years, 5 months ago


Your Answer