76 lines
2.5 KiB
PHP
76 lines
2.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Created by Reliese Model.
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class ServiceProviderService
|
|
*
|
|
* @property int $id
|
|
* @property int $service_provider_id
|
|
* @property string $name
|
|
* @property string $description
|
|
* @property bool $active
|
|
* @property int $pos
|
|
* @property Carbon $created_at
|
|
* @property Carbon $updated_at
|
|
* @property ServiceProvider $service_provider
|
|
* @property Collection|BookingProviderService[] $booking_provider_services
|
|
* @package App\Models
|
|
* @property-read int|null $booking_provider_services_count
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ServiceProviderService newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ServiceProviderService newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ServiceProviderService query()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ServiceProviderService whereActive($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ServiceProviderService whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ServiceProviderService whereDescription($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ServiceProviderService whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ServiceProviderService whereName($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ServiceProviderService wherePos($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ServiceProviderService whereServiceProviderId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ServiceProviderService whereUpdatedAt($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class ServiceProviderService extends Model
|
|
{
|
|
protected $connection = 'mysql';
|
|
|
|
protected $table = 'service_provider_services';
|
|
|
|
protected $casts = [
|
|
'service_provider_id' => 'int',
|
|
'active' => 'bool',
|
|
'pos' => 'int'
|
|
];
|
|
|
|
protected $fillable = [
|
|
'service_provider_id',
|
|
'name',
|
|
'description',
|
|
'active',
|
|
'pos'
|
|
];
|
|
|
|
protected $status_type = [
|
|
0 => 'offen',
|
|
1 => 'erledigt',
|
|
];
|
|
|
|
public function service_provider()
|
|
{
|
|
return $this->belongsTo(ServiceProvider::class);
|
|
}
|
|
|
|
public function booking_provider_services()
|
|
{
|
|
return $this->hasMany(BookingProviderService::class);
|
|
}
|
|
|
|
}
|