路由表單驗證

王子飛發表於2020-07-21
public function rules()
{
    switch(Route::currentRouteName())
    {
        case 'routeName1':
        {
            return [];
        }
        case 'routeName2':
        {
            return [];
        }
        case 'routeName3':
        {
            return [];
        }
        default:
        {
            return [];
        }
    }
}
本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章