29 lines
557 B
PHP
29 lines
557 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Subscription extends Model
|
|
{
|
|
protected $fillable = [
|
|
'user_id', 'plan_id', 'status', 'starts_at', 'expires_at',
|
|
'payment_method', 'payment_ref', 'notes',
|
|
];
|
|
|
|
protected $casts = [
|
|
'starts_at' => 'datetime',
|
|
'expires_at' => 'datetime',
|
|
];
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function plan()
|
|
{
|
|
return $this->belongsTo(MembershipPlan::class, 'plan_id');
|
|
}
|
|
}
|