*
Showing
1 changed file
with
27 additions
and
0 deletions
app/Models/Musician/AppCompanyUser.php
0 → 100644
1 | <?php | ||
2 | |||
3 | namespace App\Models\Musician; | ||
4 | |||
5 | use Illuminate\Database\Eloquent\Factories\HasFactory; | ||
6 | use Illuminate\Database\Eloquent\Model; | ||
7 | |||
8 | /** | ||
9 | * Class AppCompanyUser | ||
10 | * @package App\Models\Musician | ||
11 | */ | ||
12 | class AppCompanyUser extends Model | ||
13 | { | ||
14 | use HasFactory; | ||
15 | |||
16 | /** | ||
17 | * @var string | ||
18 | */ | ||
19 | protected $connection = 'musician'; | ||
20 | |||
21 | /** | ||
22 | * @var string | ||
23 | */ | ||
24 | protected $table = 'app_company_user'; | ||
25 | |||
26 | |||
27 | } |
-
Please register or sign in to post a comment