laravel的唯一驗證怎麼過濾軟刪除的數據
阿神
阿神 2017-05-16 16:48:14
0
1
654

就是一個字段unique驗證,除去自己本身之外還有軟刪除的記錄

阿神
阿神

闭关修行中......

全部回覆(1)
某草草

使用下面這種方式

'email' => Rule::unique('users')->where(function ($query) {
    $query->whereNotNull('deleted_at')->whereNot('id', 4);
})

參考官方文件 https://laravel.com/docs/5.4/...

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!