├── .env ├── .gitignore ├── .htaccess ├── README.md ├── app ├── config │ ├── config.php │ ├── eloquent.php │ ├── loader.php │ └── services.php ├── controllers │ ├── ControllerBase.php │ └── IndexController.php ├── models │ └── Ciudad.php └── views │ ├── index.phtml │ └── index │ └── index.phtml ├── composer.json ├── composer.lock ├── index.html └── public ├── .htaccess └── index.php /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuegrullon/phalcon-eloquent/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuegrullon/phalcon-eloquent/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuegrullon/phalcon-eloquent/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuegrullon/phalcon-eloquent/HEAD/README.md -------------------------------------------------------------------------------- /app/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuegrullon/phalcon-eloquent/HEAD/app/config/config.php -------------------------------------------------------------------------------- /app/config/eloquent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuegrullon/phalcon-eloquent/HEAD/app/config/eloquent.php -------------------------------------------------------------------------------- /app/config/loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuegrullon/phalcon-eloquent/HEAD/app/config/loader.php -------------------------------------------------------------------------------- /app/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuegrullon/phalcon-eloquent/HEAD/app/config/services.php -------------------------------------------------------------------------------- /app/controllers/ControllerBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuegrullon/phalcon-eloquent/HEAD/app/controllers/ControllerBase.php -------------------------------------------------------------------------------- /app/controllers/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuegrullon/phalcon-eloquent/HEAD/app/controllers/IndexController.php -------------------------------------------------------------------------------- /app/models/Ciudad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuegrullon/phalcon-eloquent/HEAD/app/models/Ciudad.php -------------------------------------------------------------------------------- /app/views/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuegrullon/phalcon-eloquent/HEAD/app/views/index.phtml -------------------------------------------------------------------------------- /app/views/index/index.phtml: -------------------------------------------------------------------------------- 1 |

Congratulations!

2 | 3 |

You'now flying with Phalcon.

4 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuegrullon/phalcon-eloquent/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuegrullon/phalcon-eloquent/HEAD/composer.lock -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuegrullon/phalcon-eloquent/HEAD/index.html -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuegrullon/phalcon-eloquent/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuegrullon/phalcon-eloquent/HEAD/public/index.php --------------------------------------------------------------------------------