%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/silvzytp/dsr_code/app/Models/
Upload File :
Create Path :
Current File : //home/silvzytp/dsr_code/app/Models/MonthlyData.php

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class MonthlyData extends Model
{
    use HasFactory;

    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'user_id',
        'revenue_date',
        'agent_name',
        'sale_achievment',
        'revenue_achievment',
        's_media_lead',
        'dj_lead',
        'telesale_l',
        'c_caling_l',
        'old_s_media_l',
        'meeting_attendance',
        'meeting_source',
        'n_of_deal',
        'n_of_call',
        'connected_call',
        'remark',
    ];

    public function user(){
        return $this->belongsTo(User::class);
    }
}

Zerion Mini Shell 1.0