ReportRichiesta.php 483 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Factories\HasFactory;
  4. use Illuminate\Database\Eloquent\Model;
  5. class ReportRichiesta extends Model
  6. {
  7. use HasFactory;
  8. public $timestamps = false;
  9. protected $table = 'fcf_reports_richieste';
  10. protected $fillable = [
  11. 'report_id',
  12. 'anagrafica_id',
  13. 'data_richiesta',
  14. 'consegna_richiesta',
  15. 'description',
  16. 'state' ,
  17. 'created',
  18. 'created_by'
  19. ];
  20. }