WeeklyReportView.php 426 Bytes
<?php

namespace App\Models\View;

use App\Helpers\Constants;
use Illuminate\Database\Eloquent\Model;

class WeeklyReportView extends Model
{
    protected $table = Constants::VIEW_TABLE_WEEKLY_REPORT_VIEW;

    public $timestamps = false;

    protected $fillable = [
        'track_id',
        'week_zing', 'week_nct', 'week_keeng', 'total_listen',
        'point_zing', 'point_nct', 'point_keeng', 'total_point'
    ];

}