mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 22:20:57 +08:00
9 lines
166 B
PHP
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'];
|
|
}
|