<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class PackageChange extends Model
{
    //
	protected $fillable = [
		'user_id',
		'package_id',
		'number_hostels',
		'number_rooms',
		'number_staffs',
		'price_per_month',
		'start_date',
		'end_date',
		'created_at',
		'updated_at',
	];

	protected $dates = [
		'created_at',
		'updated_at',
		'start_date',
		'end_date'
	];
}
