Answers for "laravel required with validation"

PHP
2

field not required validation laravel

$this->validate($request, [
	"field_nullable" => "nullable"
]
Posted by: Guest on May-11-2021
0

laravel validation

<?php

namespace App\Providers;

use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\Validator;

class AppServiceProvider extends ServiceProvider
{
    /**
     * Register any application services.
     *
     * @return void
     */
    public function register()
    {
        //
    }

    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot()
    {
        Validator::extend('foo', function ($attribute, $value, $parameters, $validator) {
            return $value == 'foo';
        });
    }
}
Posted by: Guest on December-25-2020

Code answers related to "laravel required with validation"

Browse Popular Code Answers by Language