public function store(Request $request){
$this->validate($request,[
'title'=>'required|max:4'
]);
}
Jerry 發表在 痞客邦 留言(0) 人氣(0)
public function store(Request $request){
$this->validate($request,[
'title'=>'required|max:4'
]);
}
Jerry 發表在 痞客邦 留言(0) 人氣(190)
安裝package
https://laravelcollective.com/docs/5.2/html
Jerry 發表在 痞客邦 留言(0) 人氣(138)
安裝package
https://laravelcollective.com/docs/5.2/html
Jerry 發表在 痞客邦 留言(0) 人氣(0)
Route::resource('/posts','PostController');
Jerry 發表在 痞客邦 留言(0) 人氣(0)
Route::resource('/posts','PostController');
Jerry 發表在 痞客邦 留言(0) 人氣(404)
public function up()
{
Schema::create('addresses', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id')->usigned()->nullable();
$table->string('name');
$table->timestamps();
});
}
Jerry 發表在 痞客邦 留言(0) 人氣(16)
public function up()
{
Schema::create('addresses', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id')->usigned()->nullable();
$table->string('name');
$table->timestamps();
});
}
Jerry 發表在 痞客邦 留言(0) 人氣(0)
由packagecontrol安裝AdvancedNewFile
快捷鍵:ctrl+alt+n
Jerry 發表在 痞客邦 留言(0) 人氣(35)
由packagecontrol安裝AdvancedNewFile
快捷鍵:ctrl+alt+n
Jerry 發表在 痞客邦 留言(0) 人氣(0)