├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE.md ├── Readme.md ├── composer.json ├── images └── screenshot.png └── src ├── CountryCodesServiceProvider.php ├── CountryCodesontroller.php ├── app └── Models │ └── CountryCodes.php ├── database ├── migrations │ └── 2022_08_04_031153_create_country_codes_table.php └── seeders │ └── CountryCodesTableSeeder.php ├── resources └── views │ ├── app.blade.php │ └── list.blade.php └── routes └── web.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertnicjoo/country-codes/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertnicjoo/country-codes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertnicjoo/country-codes/HEAD/Readme.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertnicjoo/country-codes/HEAD/composer.json -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertnicjoo/country-codes/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /src/CountryCodesServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertnicjoo/country-codes/HEAD/src/CountryCodesServiceProvider.php -------------------------------------------------------------------------------- /src/CountryCodesontroller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertnicjoo/country-codes/HEAD/src/CountryCodesontroller.php -------------------------------------------------------------------------------- /src/app/Models/CountryCodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertnicjoo/country-codes/HEAD/src/app/Models/CountryCodes.php -------------------------------------------------------------------------------- /src/database/migrations/2022_08_04_031153_create_country_codes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertnicjoo/country-codes/HEAD/src/database/migrations/2022_08_04_031153_create_country_codes_table.php -------------------------------------------------------------------------------- /src/database/seeders/CountryCodesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertnicjoo/country-codes/HEAD/src/database/seeders/CountryCodesTableSeeder.php -------------------------------------------------------------------------------- /src/resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertnicjoo/country-codes/HEAD/src/resources/views/app.blade.php -------------------------------------------------------------------------------- /src/resources/views/list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertnicjoo/country-codes/HEAD/src/resources/views/list.blade.php -------------------------------------------------------------------------------- /src/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertnicjoo/country-codes/HEAD/src/routes/web.php --------------------------------------------------------------------------------