Your IP : 216.73.216.93


Current Path : /home/users/unlimited/www/talentorbit.codeskitter.site/app/
Upload File :
Current File : /home/users/unlimited/www/talentorbit.codeskitter.site/app/Subscription.php

<?php

namespace App;

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

class Subscription extends Model
{


    protected $table = 'subscriptions';
    public $timestamps = true;
    protected $guarded = ['id'];
    //protected $dateFormat = 'U';
    protected $dates = ['created_at', 'updated_at'];

    
}