摘要:
Route::group(['namespace' => 'Api'], function (){ Route::any('send','SmsController@send'); }); namespace是指向Api文件夹下所有文件 阅读全文
摘要:
1.使用toSql()方法 2.用DB自带的getQueryLog方法直接打印: use Illuminate\Support\Facades\DB; 1 DB::connection()->enableQueryLog(); // 开启QueryLog \App\User::find(1); du 阅读全文
摘要:
Laravel 字符主键获取为0 laravel的orm中默认的keyType 是int类型, 所以当model的主键为string类型的时候,会获取到0的值。 解决方法: 在model 里面添加 protected $keyType = 'string'; 阅读全文