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
  • Legal
  • Company.php
  • lemon's avatar
    * · ebbe4438
    ebbe4438
    lemon authored 2021-08-12 12:32:31 +0800
Company.php 274 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?php

namespace App\Models\Legal;

use App\Models\BaseModel;
use Illuminate\Database\Eloquent\SoftDeletes;

class Company extends BaseModel
{
    use SoftDeletes;

    protected $table = 'company';
    protected $primaryKey = 'company_id';

    protected $guarded = [];

}