mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
15 lines
230 B
PHP
15 lines
230 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Throttle extends Model
|
|
{
|
|
|
|
protected $table = 'throttle';
|
|
public function user()
|
|
{
|
|
return $this->belongsTo('User', 'user_id');
|
|
}
|
|
}
|