File manager - Edit - /home/asiatechinc/public_html/bhrhotelsindia.com/modules/Flight/Factories/AirportFactory.php
Back
<?php namespace Modules\Flight\Factories; use Illuminate\Database\Eloquent\Factories\Factory; use Illuminate\Support\Facades\DB; use Modules\Flight\Models\Airline; use Modules\Flight\Models\Airport; use Modules\Location\Models\Location; class AirportFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = Airport::class; /** * Define the model's default state. * * @return array */ public function definition() { $locations = Location::pluck('id')->toArray(); return [ 'name'=>$this->faker->city, 'code'=>$this->faker->unique()->randomNumber(3), 'location_id'=>$this->faker->randomElement($locations), 'description'=>$this->faker->text, 'address'=>$this->faker->address, 'map_lat'=>$this->faker->latitude, 'map_lng'=>$this->faker->longitude, 'map_zoom'=>$this->faker->numberBetween(8,10), ]; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings