Table_eight.php 203 B

12345678910111213
  1. <?php
  2. namespace App\Model;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Table_eight extends Model
  5. {
  6. protected $table = 'table_eight';
  7. protected $primaryKey = 'id';
  8. public $guarded=[];
  9. }