芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/panorama.panoramawholesale.com/app/Rules/CheckDateFormat.php
* * @contributor Sakawat Hossain Rony <[sakawat.techvill@gmail.com]> * * @created 17-08-2021 */ namespace App\Rules; use Illuminate\Contracts\Validation\Rule; class CheckDateFormat 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 getDateformatId($value, 'value'); } /** * Get the validation error message. * * @return string */ public function message() { return __('The selected :x is invalid.', ['x' => __('Date format')]); } }