Fix Corporate Member

This commit is contained in:
R
2022-12-05 13:07:20 +07:00
parent d3a806ff0b
commit 3bc8877740
6 changed files with 56 additions and 10 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class CorporateManager extends Model
{
use HasFactory;
protected $table = 'corporate_manager';
}