视图 一.怎么新建视图: 1.视图默认存放路径:resources/views: 2.laravel模板支持原生的PHP,直接可以在resources/views新建一个PHP文件,例如: index.php this is view // 模板内容 二.怎么输出视图: 1.输出视图 public function demo() { return view('index'); } 如果模板文件放在其他目录下,例如:resources/views/Test,输出的时候只要在视图名前加上目录名即可:…
Testing Introduction Application Testing Interacting With Your Application Testing JSON APIs Sessions / Authentication Disabling Middleware Custom HTTP Requests PHPUnit Assertions Working With Databases Resetting The Database After Each Test Model Fa…