mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-01-26 11:44:11 +00:00
18 lines
278 B
PHP
18 lines
278 B
PHP
<?php
|
|
|
|
namespace nullthoughts\LaravelDataSync\Tests;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Supervisor extends Model
|
|
{
|
|
public $timestamps = false;
|
|
|
|
protected $guarded = [];
|
|
|
|
public function roles()
|
|
{
|
|
return $this->hasMany(Roles::class);
|
|
}
|
|
}
|