| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Eloquent\SoftDeletes;
- class ReclamationView extends Model
- {
- use SoftDeletes;
- const DEFAULT_SORT_BY = 'created_at';
- protected $table = 'reclamations_view';
- protected $fillable = [
- 'id',
- 'order_id',
- 'user_id',
- 'status_id',
- 'create_date',
- 'finish_date',
- 'reason',
- 'guarantee',
- 'whats_done',
- 'created_at',
- 'updated_at',
- 'start_work_date',
- 'work_days',
- 'brigadier_id',
- 'comment',
- 'user_name',
- 'brigadier_name',
- 'year',
- 'order_name',
- 'object_address',
- 'district_name',
- 'area_name',
- 'object_type_name',
- 'status_name',
- ];
- }
|