Last change
on this file 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
|
Rev | Line | |
---|
[c6b84df] | 1 | <?php
|
---|
| 2 |
|
---|
| 3 | namespace App\Models;
|
---|
| 4 |
|
---|
| 5 | use Illuminate\Database\Eloquent\Factories\HasFactory;
|
---|
| 6 | use Illuminate\Database\Eloquent\Model;
|
---|
| 7 |
|
---|
| 8 | class 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.