Level 34
$this->validate($request, [
'image' => 'dimensions:width= 1920,height=1080'
]);
source: https://laravel.com/docs/8.x/validation#rule-dimensions
1 like
I only need to upload images that are 1920px * 1080px in size.
$this->validate($request, [
'image' => 'dimensions:width= 1920,height=1080'
]);
source: https://laravel.com/docs/8.x/validation#rule-dimensions
Please or to participate in this conversation.