mirror of
https://github.com/brian8544/turtle-wow.git
synced 2025-01-05 14:24:34 +00:00
21 lines
368 B
PHP
21 lines
368 B
PHP
<?php
|
|
|
|
namespace App\Models\pivot;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Relations\Pivot;
|
|
|
|
class BugTrackerRealm extends Pivot
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'pivot_bug_tracker_realms';
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = [
|
|
'bug_tracker_id',
|
|
'realm_id'
|
|
];
|
|
}
|