| 1234567891011121314151617181920212223242526 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- class ReportRichiesta extends Model
- {
- use HasFactory;
- public $timestamps = false;
- protected $table = 'fcf_reports_richieste';
- protected $fillable = [
- 'report_id',
- 'anagrafica_id',
- 'data_richiesta',
- 'consegna_richiesta',
- 'description',
- 'state' ,
- 'created',
- 'created_by'
- ];
- }
|