Throttle.php
Go to the documentation of this file.
1 <?php
2 namespace App\Models;
3 
5 
6 class Throttle extends Model
7 {
8 
9  protected $table = 'throttle';
10  public function user()
11  {
12  return $this->belongsTo('User', 'user_id');
13  }
14 }