This commit is contained in:
ct
2025-07-01 23:13:09 +08:00
parent 79e7d7a49e
commit 209c022f1d
26 changed files with 374 additions and 50 deletions

31
app/Models/Plan.php Normal file
View File

@@ -0,0 +1,31 @@
<?php
/**
* Created by Reliese Model.
*/
namespace App\Models;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
/**
* Class Plan
*
* @property int $id
* @property string $name
* @property string $tier
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
*
* @package App\Models
*/
class Plan extends Model
{
protected $table = 'plans';
protected $fillable = [
'name',
'tier'
];
}