feat: Implement Counselor management with CRUD functionality and associated views
This commit is contained in:
22
Modules/CCMS/app/Models/Counselor.php
Normal file
22
Modules/CCMS/app/Models/Counselor.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\CCMS\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
// use Modules\CCMS\Database\Factories\CounselorFactory;
|
||||
|
||||
class Counselor extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*/
|
||||
protected $guarded = [];
|
||||
|
||||
// protected static function newFactory(): CounselorFactory
|
||||
// {
|
||||
// // return CounselorFactory::new();
|
||||
// }
|
||||
}
|
Reference in New Issue
Block a user