Order.php 438 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Order extends Model
  5. {
  6. protected $fillable = [
  7. 'client_id',
  8. 'user_id',
  9. 'district_id',
  10. 'area_id',
  11. 'object_address',
  12. 'object_type',
  13. 'contract_date',
  14. 'contract_number',
  15. 'comment',
  16. 'installation_date',
  17. 'brigadier',
  18. 'tg_group_name',
  19. 'tg_group_link',
  20. ];
  21. }