File "MaxFileSize.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Rules/MaxFileSize.php
File size: 556 bytes
MIME-type: text/x-php
Charset: utf-8

<?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.');
        }
    }
}