51 lines
1017 B
PHP
51 lines
1017 B
PHP
<?php
|
|
|
|
namespace App\Rules;
|
|
|
|
use App\Models\VideoSetting;
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
|
|
class TraningVideoValidationRule 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)
|
|
{
|
|
$inputData = request()->all();
|
|
|
|
if(isset($inputData['welcome_video_create']) && $inputData['welcome_video_create']) {
|
|
$inputData['is_welcome_video'] = true;
|
|
$videos=(new VideoSetting())->getVideos($inputData);
|
|
if($videos->isEmpty()){
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get the validation error message.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function message()
|
|
{
|
|
return 'Already set welcome video.';
|
|
}
|
|
}
|