8ea540a88c
- use PHP7 null coalesce operator instead of laravel optional method - change Breadcrumbs::register method to Bredcrumbs::for method - composer updates
18 lines
381 B
PHP
18 lines
381 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class MimeType extends Model
|
|
{
|
|
use HasFactory;
|
|
protected $table = 'mime_types';
|
|
|
|
// for using $input = $request->all();
|
|
//$project = Project::create($input);
|
|
protected $fillable = [
|
|
'name', 'file_extension', 'enabled',
|
|
];
|
|
}
|