Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
admin_panel
/
app
/
Rules
:
MaxFileSize.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace App\Rules; use Closure; use Illuminate\Contracts\Validation\ValidationRule; class MaxFileSize implements ValidationRule { protected $maxSize; public function __construct($maxSizeInMB) { $this->maxSize = $maxSizeInMB * 1024 * 1024; // Convert MB to bytes } public function validate(string $attribute, mixed $value, Closure $fail): void { if ($value->getSize() > $this->maxSize) { $fail('The file size must be less than ' . ($this->maxSize / (1024 * 1024)) . 'MB.'); } } }