SiteStation.php 391 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Http\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class SiteStation extends Model
  5. {
  6. protected $table = 'sites_station';
  7. protected $primaryKey = 'site_id';
  8. public $incrementing = false;
  9. protected $guarded = [];
  10. protected $casts = [
  11. 'other_sites' => 'array',
  12. 'portal_sites' => 'array',
  13. 'compete_sites' => 'array'
  14. ];
  15. }