mirror of
https://github.com/the-programmers-hangout/Mimic.git
synced 2026-09-04 01:06:00 +02:00
11 lines
148 B
PHP
11 lines
148 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Mime extends Model
|
|
{
|
|
protected $fillable = ['mime', 'handling'];
|
|
}
|