| Current Path : /home/users/unlimited/www/talentorbit.codeskitter.site/app/ |
| 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'];
}