/
home
/
corsairdevelopme
/
public_html
/
amplivo-console
/
app
/
Models
/
Upload File
HOME
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class WithdrawalCSV extends Model { use HasFactory; protected $table = 'withdrawal_csv'; public $pageName = "Withdrawal CSV"; protected $fillable = [ 'batch_id', 'batch_date', 'exported_by', 'number_of_record', 'total_amount', 'file_path', 'uploaded_log_file_path', 'log_uploaded', 'status' ]; public function exportedBy() { return $this->belongsTo(User::class, 'exported_by')->with('details'); } }