PATH:
home
/
lab2454c
/
costbloc.com
/
app
/
Rules
<?php namespace App\Rules; use App\Models\Language; use Illuminate\Contracts\Validation\Rule; class CheckLanguage 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) { $languageShrotName = Language::getAll()->pluck("short_name", 'id')->toArray(); if (isset($value)) { foreach ($value as $key => $val) { if (isset($val['language_id']) && isset($languageShrotName[$val['language_id']]) && $languageShrotName[$val['language_id']] == $key) { continue; } else { return false; } } return true; } } /** * Get the validation error message. * * @return string */ public function message() { return __('Invalid :x', ['x' => __('Language')]); } }
[-] CheckValidFile.php
[edit]
[-] CheckThousandSeparator.php
[edit]
[-] CheckAttribute.php
[edit]
[+]
..
[-] CheckLabel.php
[edit]
[-] CheckDuplicateProduct.php
[edit]
[-] CheckChildCategory.php
[edit]
[-] CheckPrice.php
[edit]
[-] CheckValidURL.php
[edit]
[-] CheckValidDate.php
[edit]
[-] CheckLanguage.php
[edit]
[-] CheckValidEmail.php
[edit]
[-] StrengthPassword.php
[edit]
[-] CheckAttributeValue.php
[edit]
[-] CheckPriceType.php
[edit]
[-] CheckEditorText.php
[edit]
[-] CheckDateFormat.php
[edit]
[-] CheckDefaultTimeZone.php
[edit]
[-] CheckOptionData.php
[edit]
[-] DateCompare.php
[edit]
[-] CheckValidPhone.php
[edit]