| 123456789101112131415161718192021222324 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class Order extends Model
- {
- protected $fillable = [
- 'client_id',
- 'user_id',
- 'district_id',
- 'area_id',
- 'object_address',
- 'object_type',
- 'contract_date',
- 'contract_number',
- 'comment',
- 'installation_date',
- 'brigadier',
- 'tg_group_name',
- 'tg_group_id',
- ];
- }
|