source: app/Models/FileType.php@ 507ade0

develop
Last change on this file since 507ade0 was c6b84df, checked in by beratkjufliju <kufliju@…>, 3 years ago

added fileTypes controller, notifications, excel export, edited views

  • Property mode set to 100644
File size: 278 bytes
Line 
1<?php
2
3namespace App\Models;
4
5use Illuminate\Database\Eloquent\Factories\HasFactory;
6use Illuminate\Database\Eloquent\Model;
7
8class FileType extends Model
9{
10 use HasFactory;
11
12 protected $table = "file_types";
13
14 protected $fillable = ["mimes", "max_size", "user_id"];
15}
Note: See TracBrowser for help on using the repository browser.