Add a UUID validation to your Laravel 5.5+ Validation Rules
Install with composer:
composer require rap2hpoutre/uuid-rule
In your controllers, add the validation with your other rules:
$request->validate([
'email' => 'required|string|email'
'uuid' => ['required', new \Rap2hpoutre\UuidRule\UuidRule],
]);