initial commit
This commit is contained in:
12
app/Models/ProfileCategory.php
Normal file
12
app/Models/ProfileCategory.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class ProfileCategory extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
protected $fillable = ['name', 'status', 'icon', 'category_link'];
|
||||
}
|
Reference in New Issue
Block a user