HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/vhost/disk-apps/teamdemo.sports-crowd.com/database/seeds/StatesTableSeeder.php
<?php

use App\State;
use Illuminate\Database\Seeder;

class StatesTableSeeder extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        State::create(["id" => 5, "name" => 'Antioquia', "country_id" => 1]);
        State::create(["id" => 8, "name" => 'Atlántico', "country_id" => 1]);
        State::create(["id" => 11, "name" => 'Bogotá, D.C.', "country_id" => 1]);
        State::create(["id" => 13, "name" => 'Bolívar', "country_id" => 1]);
        State::create(["id" => 15, "name" => 'Boyacá', "country_id" => 1]);
        State::create(["id" => 17, "name" => 'Caldas', "country_id" => 1]);
        State::create(["id" => 18, "name" => 'Caquetá', "country_id" => 1]);
        State::create(["id" => 19, "name" => 'Cauca', "country_id" => 1]);
        State::create(["id" => 20, "name" => 'Cesar', "country_id" => 1]);
        State::create(["id" => 23, "name" => 'Córdoba', "country_id" => 1]);
        State::create(["id" => 25, "name" => 'Cundinamarca', "country_id" => 1]);
        State::create(["id" => 27, "name" => 'Chocó', "country_id" => 1]);
        State::create(["id" => 41, "name" => 'Huila', "country_id" => 1]);
        State::create(["id" => 44, "name" => 'La Guajira', "country_id" => 1]);
        State::create(["id" => 47, "name" => 'Magdalena', "country_id" => 1]);
        State::create(["id" => 50, "name" => 'Meta', "country_id" => 1]);
        State::create(["id" => 52, "name" => 'Nariño', "country_id" => 1]);
        State::create(["id" => 54, "name" => 'Norte De Santander', "country_id" => 1]);
        State::create(["id" => 63, "name" => 'Quindio', "country_id" => 1]);
        State::create(["id" => 66, "name" => 'Risaralda', "country_id" => 1]);
        State::create(["id" => 68, "name" => 'Santander', "country_id" => 1]);
        State::create(["id" => 70, "name" => 'Sucre', "country_id" => 1]);
        State::create(["id" => 73, "name" => 'Tolima', "country_id" => 1]);
        State::create(["id" => 76, "name" => 'Valle Del Cauca', "country_id" => 1]);
        State::create(["id" => 81, "name" => 'Arauca', "country_id" => 1]);
        State::create(["id" => 85, "name" => 'Casanare', "country_id" => 1]);
        State::create(["id" => 86, "name" => 'Putumayo', "country_id" => 1]);
        State::create(["id" => 88, "name" => 'San Andrés, Providencia Y Santa Catalina', "country_id" => 1]);
        State::create(["id" => 91, "name" => 'Amazonas', "country_id" => 1]);
        State::create(["id" => 94, "name" => 'Guainía', "country_id" => 1]);
        State::create(["id" => 95, "name" => 'Guaviare', "country_id" => 1]);
        State::create(["id" => 97, "name" => 'Vaupés', "country_id" => 1]);
        State::create(["id" => 99, "name" => 'Vichada', "country_id" => 1]);
    }
}