| Current Path : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Models/Finance/ |
| Current File : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Models/Finance/Subscription.php |
<?php
namespace App\Models\Finance;
use App\Models\Plan;
use Laravel\Cashier\Subscription as CashierSubscription;
class Subscription extends CashierSubscription
{
protected $table = 'subscriptions';
public function plan(): \Illuminate\Database\Eloquent\Relations\BelongsTo
{
return $this->belongsTo(Plan::class, 'plan_id');
}
}