mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-02 22:57:33 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			537 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			537 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php namespace app\Http\Requests;
 | 
						|
// vendor
 | 
						|
use App\Http\Requests\Request;
 | 
						|
use Illuminate\Validation\Factory;
 | 
						|
 | 
						|
class UpdateVendorRequest extends Request
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Determine if the user is authorized to make this request.
 | 
						|
     *
 | 
						|
     * @return bool
 | 
						|
     */
 | 
						|
    public function authorize()
 | 
						|
    {
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get the validation rules that apply to the request.
 | 
						|
     *
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function rules()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'name' => 'required',
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |