title: Setting Up Laravel in Ubuntu / DigitalOcean keywords: servers, laravel, coderstape, coder's tape description: Let's take a look at settting up a server from scratch for Laravel. date: April 1, 2019 tags: servers, laravel permalink: setting-up-laravel-in-ubuntu-digitalocean img: https://coderstape.com/storage/uploads/GZTXUbyGum2xeUZM9qBD5aPv8EKLwG3C8RGcRon4.jpeg author: Victor Gonzalez authorlink: https://github.com/vicgonvt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| nombre | name | nom | iso2 | iso3 | phone_code | |
|---|---|---|---|---|---|---|
| Afganistán | Afghanistan | Afghanistan | AF | AFG | 93 | |
| Albania | Albania | Albanie | AL | ALB | 355 | |
| Alemania | Germany | Allemagne | DE | DEU | 49 | |
| Algeria | Algeria | Algérie | DZ | DZA | 213 | |
| Andorra | Andorra | Andorra | AD | AND | 376 | |
| Angola | Angola | Angola | AO | AGO | 244 | |
| Anguila | Anguilla | Anguilla | AI | AIA | 1 264 | |
| Antártida | Antarctica | L'Antarctique | AQ | ATA | 672 | |
| Antigua y Barbuda | Antigua and Barbuda | Antigua et Barbuda | AG | ATG | 1 268 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // This can be found in the Symfony\Component\HttpFoundation\Response class | |
| const HTTP_CONTINUE = 100; | |
| const HTTP_SWITCHING_PROTOCOLS = 101; | |
| const HTTP_PROCESSING = 102; // RFC2518 | |
| const HTTP_OK = 200; | |
| const HTTP_CREATED = 201; | |
| const HTTP_ACCEPTED = 202; |