/ app / Models / Oracle / Niveles.php
Niveles.php
 1  <?php
 2  
 3  namespace App\Models\Oracle;
 4  
 5  /**
 6   * App\Models\Oracle\Niveles
 7   *
 8   * @property int $nivcode
 9   * @property string|null $nivnivel
10   * @method static \Illuminate\Database\Eloquent\Builder|Niveles newModelQuery()
11   * @method static \Illuminate\Database\Eloquent\Builder|Niveles newQuery()
12   * @method static \Illuminate\Database\Eloquent\Builder|Niveles query()
13   * @method static \Illuminate\Database\Eloquent\Builder|Niveles whereNIVCODE($value)
14   * @method static \Illuminate\Database\Eloquent\Builder|Niveles whereNIVNIVEL($value)
15   * @mixin \Eloquent
16   */
17  class Niveles extends OracleModel
18  {
19  
20      protected $table='niveles';
21      protected $primaryKey ='nivcode';
22  
23  }