| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- class ReportAllegatiGallery extends Model
- {
- use HasFactory;
- public $timestamps = false;
- protected $table = 'fcf_reports_allegati_galleries';
- protected $fillable = [
- 'report_id' ,
- 'file_type' ,
- 'gallery_type',
- 'name' ,
- 'files',
- 'token' ,
- 'is_visible',
- 'state' ,
- 'created',
- 'created_by',
- ];
- public function report()
- {
- return $this->belongsTo(Report::class);
- }
- }
|