MonthCard.php 358 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Models\Platform;
  3. use Illuminate\Database\Eloquent\Model;
  4. class MonthCard extends Model
  5. {
  6. protected $table = 'QPPlatformDB.dbo.MonthCard';
  7. protected $primaryKey = 'CardID';
  8. public $timestamps = false;
  9. public function getGearAttribute()
  10. {
  11. return json_decode($this->attributes['gear'], true) ?: [];
  12. }
  13. }