Update
This commit is contained in:
31
app/Models/Plan.php
Normal file
31
app/Models/Plan.php
Normal 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'
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user