Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current none :
/
var
/
www
/
html
/
tpid-karpenter
/
api
/
app
/
Rules
/
Or
Select Your none :
Upload File :
New :
File
Dir
/var/www/html/tpid-karpenter/api/app/Rules/InBanks.php
<?php namespace App\Rules; use Illuminate\Contracts\Validation\Rule; use App\Http\Models\Bank; class InBanks implements Rule { /** * Create a new rule instance. * * @return void */ public function __construct() { // } /** * Determine if the validation rule passes. * * @param string $attribute * @param mixed $value * @return bool */ public function passes($attribute, $value) { return Bank::where('id_bank', $value)->first(); } /** * Get the validation error message. * * @return string */ public function message() { return 'Bank not registered.'; } }