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