ParkingAccess
extends Model
in package
uses
HasFactory, Sortable
Parking Access Model
This model manages parking access records for airport parking facilities. It tracks customer information, reservation details, access times, and processing status for parking bookings.
Table of Contents
Properties
- $fillable : array<string|int, string>
- The attributes that are mass assignable.
Methods
- __construct() : void
- Create a new ParkingAccess model instance.
Properties
$fillable
The attributes that are mass assignable.
protected
array<string|int, string>
$fillable
= ['id', 'reservation_id', 'name', 'address', 'identifier', 'airport_code', 'ip_address', 'browser', 'arrival_at', 'exit_at', 'created_at', 'updated_at', 'first_name', 'last_name', 'phone', 'email', 'is_processed', 'booking_url', 'trigger_count', 'is_trigger_processed', 'last_triggered_date']
Methods
__construct()
Create a new ParkingAccess model instance.
public
__construct() : void
Sets the table name from configuration constants.