# fluent-booking/1.5.02/app/Models/BookingHost.php

Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution, version 1.5.02. 23 lines.

- Page: https://pluginprobe.com/plugins/fluent-booking/1.5.02/code/app/Models/BookingHost.php
- Raw: https://pluginprobe.com/plugins/fluent-booking/1.5.02/raw/app/Models/BookingHost.php
- Modified: 2024-07-16T14:25:14+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-booking/1.5.02/code/app/Models/BookingHost.php#L10-L20`.

```php
<?php

namespace FluentBooking\App\Models;

class BookingHost extends Model
{
    protected $table = 'fcal_booking_hosts';

    protected $guarded = ['id'];

    protected $fillable = [
        'booking_id',
        'user_id',
    ];


    public function booking()
    {
        return $this->belongsTo(Booking::class, 'booking_id');
    }

}

```
