Files
nexusphp/app/Models/Attachment.php
2025-10-31 19:35:57 +07:00

9 lines
166 B
PHP

<?php
namespace App\Models;
class Attachment extends NexusModel
{
const IMG_EXTENSIONS = ['jpeg', 'jpg', 'png', 'gif', 'webp', 'bmp', 'tif', 'tiff', 'heic'];
}