ScheduleBus
extends Model
in package
uses
HasFactory
Schedule Bus Model
This model manages scheduled bus service information for airports. It stores details about bus companies, routes, contact information, and service descriptions for airport transportation.
Table of Contents
Properties
- $fillable : array<string|int, string>
- The attributes that are mass assignable.
Methods
- __construct() : void
- Create a new ScheduleBus model instance.
Properties
$fillable
The attributes that are mass assignable.
protected
array<string|int, string>
$fillable
= ['id', 'airport_name', 'airport_code', 'city', 'state', 'zip_code', 'company_name', 'description', 'company_address', 'company_phone1', 'company_phone2', 'company_phone3', 'company_link', 'airport_id', 'created_by', 'updated_by', 'created_at', 'updated_at']
Methods
__construct()
Create a new ScheduleBus model instance.
public
__construct() : void
Sets the table name from configuration constants.