|
@@ -10,6 +10,10 @@ namespace App\Models;
|
|
|
|
|
|
class ServicePack extends BaseModel
|
|
class ServicePack extends BaseModel
|
|
{
|
|
{
|
|
|
|
+ protected $table = 'service_packs';
|
|
|
|
+ protected $casts = [
|
|
|
|
+ 'label' => 'json',
|
|
|
|
+ ];
|
|
public function team()
|
|
public function team()
|
|
{
|
|
{
|
|
return $this->belongsTo(Team::class);
|
|
return $this->belongsTo(Team::class);
|