故事背景 一.项目预览 From: https://www.imooc.com/video/12518 二.知识点 通过项目复习之前的重难点,在此列出并解决. /* implement */ 项目开始 一.布局分析 通过纯html文件给布局打底稿 共同的头部 共同的侧边栏 共同的尾部 只是右侧内容不同. Move/add bootstrap and jquery under public/static/ 二.打通 MVC 路由 Route::get('student/index', ['uses…
故事背景 一.项目预览 From: https://www.imooc.com/video/12521 表单操作 一.新增信息 既然是操作,自然会想到:控制器. 控制器  [1] 路由 ----> 函数 create( ) Route::group(['middleware' => ['web']], function () { Route::get('student/index', ['uses' => 'StudentController@index']); Route::any('…
单个值的传递   with public function index() { $test = "测试"; return view('test.index')->with('test',$test); }   view public function index() { return view('test.index', ['test' => '测试']); }   compact public function index() { $test = "测试&quo…
The open source, cross platform, free C++ IDE. Code::Blocks is a free C++ IDE built to meet the most demanding needs of its users. It is designed to be very extensible and fully configurable. Finally, an IDE with all the features you need, having a c…
将感悟心得记于此,重启程序员模式. js, py, c++, java, php 融汇之全栈系列 [Full-stack] 快速上手开发 - React [Full-stack] 状态管理技巧 - Redux [Full-stack] 网页布局艺术 - Less [Full-stack] 异步即时通信 - Async [Full-stack] 跨平台大框架 - RN [Full-stack] 世上最好语言 - PHP 贯通之语言比对 /* 这部分有点全栈系列的味道,日后进阶 */ 语言与框架 语…
前言 本篇是对个人PHP, Laravel系列博文的总结与思考. 目的在于理清并熟练如下过程: "需求 --> Usercase --> UI --> 框架 --> 开发" 需求分析 一.页面初步设计 Ref: [Laravel] 06 - Project: from Usercase to View 1. Pure html 写法 2. 找到其中的公共部分 --> blade模板 3. 布局设计css,bootstrap and jquery 重难点也就…
Project Management ProcessDescription .......................................................................................................................................................................................1STAGE/STEP/TASK SUMMARY LIST…
命令行: php artisan controller:make UserController This will generate the controller at /app/controller/user.php and user.php. php artisan db:seed --class=AuthorTableSeeder php artisan db:seed,可以执行多个填充类.该方法是执行的DatabaseSeeder这个类 获取已持久化的用户提交的信息: Input::ol…
1.安装 使用composer安装laravel ,切换到你想要放置该网站的目录下,运行命令: composer create-project laravel/larevel project 4.1 然后.当前目录就是出现project的文件夹,然后把app/storage目录设为777,输入即可看到安装成功的页面. 2.安装插件 我们一安装Sentry插件为例,来构建登陆等权限验证系统 打开./composer.json,变更为: "require": { "laravel…
前言 一.基础 Ref: Build a REST API with Laravel API resources Goto: [Node.js] 08 - Web Server and REST API 二.资源 Goto: Laravel 5.4 From Scratch[原讲座] Goto: https://laravel.com/docs/5.4 Ref: Laravel China 社区 三.快捷键 [1] 自动生成 html 基本的 head, body 代码模板. [2] exten…