├── public ├── favicon.ico ├── images │ └── .gitkeep ├── system │ └── .gitkeep ├── uploads │ └── .gitkeep ├── packages │ └── .gitkeep ├── js │ ├── libs │ │ └── bootstrap │ │ │ ├── LICENSE │ │ │ ├── DOCS-LICENSE │ │ │ ├── LICENSE-MIT │ │ │ ├── dist │ │ │ └── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── less │ │ │ ├── breadcrumbs.less │ │ │ ├── component-animations.less │ │ │ ├── wells.less │ │ │ ├── close.less │ │ │ ├── thumbnails.less │ │ │ ├── utilities.less │ │ │ ├── media.less │ │ │ ├── pager.less │ │ │ ├── jumbotron.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── code.less │ │ │ ├── labels.less │ │ │ ├── alerts.less │ │ │ ├── progress-bars.less │ │ │ ├── grid.less │ │ │ ├── print.less │ │ │ ├── pagination.less │ │ │ ├── list-group.less │ │ │ ├── scaffolding.less │ │ │ ├── tooltip.less │ │ │ ├── modals.less │ │ │ ├── popovers.less │ │ │ ├── input-groups.less │ │ │ ├── buttons.less │ │ │ ├── dropdowns.less │ │ │ ├── panels.less │ │ │ ├── tables.less │ │ │ ├── carousel.less │ │ │ ├── responsive-utilities.less │ │ │ └── button-groups.less │ │ │ ├── bower.json │ │ │ ├── .bower.json │ │ │ └── js │ │ │ ├── transition.js │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── popover.js │ │ │ ├── tab.js │ │ │ ├── affix.js │ │ │ ├── dropdown.js │ │ │ └── scrollspy.js │ └── builds │ │ └── app.js ├── robots.txt ├── .htaccess ├── css │ └── builds │ │ └── app.css └── index.php ├── app ├── commands │ └── .gitkeep ├── assets │ ├── sass │ │ ├── home.sass │ │ └── app.sass │ └── coffee │ │ └── app.coffee ├── controllers │ ├── .gitkeep │ ├── BaseController.php │ ├── AdminController.php │ ├── UserController.php │ └── HomeController.php ├── database │ ├── seeds │ │ ├── .gitkeep │ │ ├── UserTableSeeder.php │ │ ├── DatabaseSeeder.php │ │ ├── SalesTypeTableSeeder.php │ │ ├── HouseTypeTableSeeder.php │ │ ├── CityTableSeeder.php │ │ ├── CountyTableSeeder.php │ │ └── PropertyTableSeeder.php │ └── migrations │ │ ├── .gitkeep │ │ ├── 2013_12_04_010945_create_counties_table.php │ │ ├── 2013_12_04_010926_create_cities_table.php │ │ ├── 2013_12_04_010909_create_sales_types_table.php │ │ ├── 2013_12_04_005520_create_house_types_table.php │ │ ├── 2013_12_04_012326_create_users_table.php │ │ └── 2013_12_04_010655_create_properties_table.php ├── views │ ├── layouts │ │ ├── ajax.blade.php │ │ ├── admin.blade.php │ │ └── master.blade.php │ ├── home │ │ ├── city_list.blade.php │ │ ├── search_result.blade.php │ │ └── form.blade.php │ ├── admin.blade.php │ ├── partials │ │ ├── admin.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ └── navigation.blade.php │ ├── admin │ │ ├── city_list.blade.php │ │ ├── edit.blade.php │ │ ├── create.blade.php │ │ └── index.blade.php │ ├── home.blade.php │ └── users │ │ └── login.blade.php ├── start │ ├── local.php │ ├── artisan.php │ └── global.php ├── storage │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── logs │ │ └── .gitignore │ ├── meta │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── models │ ├── County.php │ ├── HouseType.php │ ├── SalesType.php │ ├── City.php │ ├── Property.php │ └── User.php ├── tests │ ├── ExampleTest.php │ └── TestCase.php ├── config │ ├── compile.php │ ├── proxy.php │ ├── testing │ │ ├── cache.php │ │ └── session.php │ ├── packages │ │ └── fideloper │ │ │ └── proxy │ │ │ └── config.php │ ├── workbench.php │ ├── view.php │ ├── queue.php │ ├── auth.php │ ├── cache.php │ ├── database.php │ ├── mail.php │ └── session.php ├── lang │ └── en │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php ├── routes.php └── filters.php ├── .gitattributes ├── Boxfile.install ├── database.sql ├── foo.jpg ├── .bowerrc ├── .editorconfig ├── .gitignore ├── bower.json ├── .jshintrc ├── server.php ├── phpunit.xml ├── Boxfile ├── composer.json ├── package.json ├── bootstrap ├── paths.php ├── start.php └── autoload.php ├── artisan └── gruntfile.coffee /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/system/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/uploads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /app/assets/sass/home.sass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/layouts/ajax.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/js/libs/bootstrap/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/start/local.php: -------------------------------------------------------------------------------- 1 | 2 | Admin Area, be careful. 3 | -------------------------------------------------------------------------------- /app/views/admin/city_list.blade.php: -------------------------------------------------------------------------------- 1 | {{Form::select('city_id', $city_options, '', array('class' => 'form-control')) }} -------------------------------------------------------------------------------- /app/views/admin/edit.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.admin') 2 | @section('content') 3 | 4 |