Ignore:
Timestamp:
10/23/21 04:03:46 (3 years ago)
Author:
beratkjufliju <kufliju@…>
Branches:
develop, master
Children:
b39afb5
Parents:
c6b84df
Message:

bug fixes, edited export, added fileSeeder for DB testing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • app/Models/File.php

    rc6b84df r4b7e2d3  
    33namespace App\Models;
    44
     5use Illuminate\Database\Eloquent\Factories\HasFactory;
    56use Illuminate\Database\Eloquent\Model;
    67use Illuminate\Support\Facades\Storage;
     
    89class File extends Model
    910{
     11    use HasFactory;
     12
    1013    protected $table = "files";
    1114    protected $fillable = ["name", "location", "document_id"];
Note: See TracChangeset for help on using the changeset viewer.