JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "AppointmentSchedule.php"
Full Path: /var/www/laravel_filter/app/Models/AppointmentSchedule.php
File size: 338 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Models;
use Modules\Service\Entities\Service;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class AppointmentSchedule extends Model
{
use HasFactory;
public function service(){
return $this->belongsTo(Service::class)->select('id', 'slug');
}
}