Skip to content
  • This project
    • Loading...
  • Sign in

Cong.Zhao / musician-api.hikoon.com

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • musician-api.hikoon.com
  • app
  • Models
  • Musician
  • AppUserVerified.php
  • lemon's avatar
    * · f4753aeb
    f4753aeb Browse Files
    lemon authored 2021-10-09 14:01:04 +0800
AppUserVerified.php 328 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<?php

namespace App\Models\Musician;

use App\Models\BaseModel;
use Illuminate\Database\Eloquent\Factories\HasFactory;

/**
 * Class AppUser
 * @package App\Models\Musician
 */
class AppUserVerified extends BaseModel
{
    use HasFactory;

    protected $connection = 'musician';

    protected $table = 'app_user_verified';
}