摘要: ## Blade 模板引擎 #### 模板继承 定义布局: ```html App Name - @yield('title') @section('sidebar') This is the master sidebar. @show @yield('content') ``` 继承布局: ``` 阅读全文
posted @ 2023-06-21 21:57 仁扬 阅读(11) 评论(0) 推荐(0) 编辑
摘要: ## 基本路由 ```php // 接收一个 URI 和一个闭包 Route::get('hello', function () { return 'Hello, Laravel'; }); // 支持的路由方法 Route::get($uri, $callback); Route::post($u 阅读全文
posted @ 2023-06-21 00:00 仁扬 阅读(7) 评论(0) 推荐(0) 编辑