D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
kader-lms.com
/
Modules
/
Fees
/
Http
/
Requests
/
Filename :
FeesPaymentRequest.php
back
Copy
<?php namespace Modules\Fees\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class FeesPaymentRequest extends FormRequest { /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'payment_method' => 'required', 'bank' => 'required_if:payment_method,Bank', 'file' => 'mimes:jpg,jpeg,png,pdf', ]; } /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } }