Laravel
blank__box
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
laravel Model::updateOrCreate对数据更新操作
Model:<?php namespace App\Http\Model; use Illuminate\Database\Eloquent\Model; class Type extends Model { protected $table='type'; protected $primaryKey='tid'; protected $fillable=['t...原创 2018-04-16 11:56:03 · 16843 阅读 · 0 评论 -
Laravel 路由配置
基本路由Route::get('foo', function () { return 'Hello World'; });可用的路由方法Route::get($uri, $callback); Route::post($uri, $callback); Route::put($uri, $callback); Route::patch($uri, $callback); Route::de...原创 2018-06-30 11:42:12 · 3214 阅读 · 0 评论
分享