Server IP : 66.29.132.124 / Your IP : 18.223.238.38 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/modules/Flight/Factories/ |
Upload File : |
<?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), ]; } }