首頁 > 問答 > 主體
就是一個字段unique驗證,除去自己本身之外還有軟刪除的記錄
某草草2017-05-16 16:50:14
使用下面這種方式
'email' => Rule::unique('users')->where(function ($query) { $query->whereNotNull('deleted_at')->whereNot('id', 4); })
參考官方文件 https://laravel.com/docs/5.4/...