D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
developers.ghanempharmacy.com
/
app
/
Models
/
Filename :
VendorRegistrationReason.php
back
Copy
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; /** * Class VendorRegistrationReason * * @property int $id * @property string $title * @property string $description * @property int $priority * @property int $status * @package App\Models */ class VendorRegistrationReason extends Model { use HasFactory; protected $fillable = [ 'id', 'title', 'description', 'priority', 'status', 'created_at', 'updated_at' ]; protected $casts = [ 'id' => 'integer', 'title' => 'string', 'description' => 'string', 'priority' => 'integer', 'status' => 'integer', ]; }