123456789101112131415161718192021 |
- <?php
- /**
- * Created by PhpStorm.
- * User: zilongs
- * Date: 20-10-4
- * Time: 下午7:11
- */
- namespace App\Models;
- class ServicePack extends BaseModel
- {
- protected $table = 'service_packs';
- protected $casts = [
- 'label' => 'json',
- ];
- public function team()
- {
- return $this->belongsTo(Team::class);
- }
- }
|