NepEstate
8 |Sign in or Register to save your favourite homes
9 | 21 |26 |
28 | 31 | 34 |
By continuing, I accept Nepestate's Terms of use and Privacy Policy.
36 |37 | 42 |
├── .editorconfig
├── .env.example
├── .gitattributes
├── .gitignore
├── .styleci.yml
├── README.md
├── app
├── Console
│ └── Kernel.php
├── Exceptions
│ └── Handler.php
├── Http
│ ├── Controllers
│ │ ├── AccountController.php
│ │ ├── Auth
│ │ │ ├── ConfirmPasswordController.php
│ │ │ ├── ForgotPasswordController.php
│ │ │ ├── LoginController.php
│ │ │ ├── RegisterController.php
│ │ │ ├── ResetPasswordController.php
│ │ │ └── VerificationController.php
│ │ ├── Controller.php
│ │ ├── PropertyApplicationController.php
│ │ ├── PropertyController.php
│ │ ├── UserController.php
│ │ └── UserPropertyController.php
│ ├── Kernel.php
│ ├── Middleware
│ │ ├── Authenticate.php
│ │ ├── CheckForMaintenanceMode.php
│ │ ├── EncryptCookies.php
│ │ ├── RedirectIfAuthenticated.php
│ │ ├── TrimStrings.php
│ │ ├── TrustProxies.php
│ │ └── VerifyCsrfToken.php
│ └── View
│ │ └── Composer
│ │ └── AccountPageComposer.php
├── Property.php
├── PropertyApplication.php
├── Providers
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── BroadcastServiceProvider.php
│ ├── EventServiceProvider.php
│ ├── RouteServiceProvider.php
│ └── TelescopeServiceProvider.php
├── User.php
├── UserInfo.php
└── UserType.php
├── artisan
├── bootstrap
├── app.php
└── cache
│ └── .gitignore
├── composer.json
├── composer.lock
├── config
├── app.php
├── auth.php
├── broadcasting.php
├── cache.php
├── cors.php
├── database.php
├── filesystems.php
├── hashing.php
├── logging.php
├── mail.php
├── queue.php
├── services.php
├── session.php
├── sweetalert.php
├── telescope.php
└── view.php
├── database
├── .gitignore
├── factories
│ ├── PropertyFactory.php
│ ├── UserFactory.php
│ ├── UserInfoFactory.php
│ └── UserTypeFactory.php
├── migrations
│ ├── 2014_10_12_000000_create_users_table.php
│ ├── 2014_10_12_100000_create_password_resets_table.php
│ ├── 2019_08_19_000000_create_failed_jobs_table.php
│ ├── 2020_07_18_081225_create_properties_table.php
│ ├── 2020_07_22_144646_create_user_infos_table.php
│ ├── 2020_07_22_151056_create_user_types_table.php
│ └── 2020_09_23_040714_create_property_applications_table.php
└── seeds
│ ├── DatabaseSeeder.php
│ ├── PropertySeeder.php
│ └── UserTypeSeeder.php
├── package-lock.json
├── package.json
├── phpunit.xml
├── public
├── .htaccess
├── css
│ ├── app.css
│ └── cookie.css
├── favicon.ico
├── img
│ ├── Nike.png
│ ├── NoResult.svg
│ ├── PayPal.png
│ ├── React.png
│ ├── Segment.png
│ ├── appstoredownload.png
│ ├── background.jpg
│ ├── camera.jpg
│ ├── changeprofile.png
│ ├── download.png
│ ├── hero.jpg
│ ├── hero2 (2).jpg
│ ├── hero2.jpg
│ ├── hopper.png
│ ├── image1.jpg
│ ├── logo.png
│ ├── logo2.png
│ ├── macOS.png
│ ├── natural.png
│ ├── playstoredownload.png
│ ├── property
│ │ ├── .picasa.ini
│ │ ├── 1.jpg
│ │ ├── 10.jpg
│ │ ├── 11.jpg
│ │ ├── 12.jpg
│ │ ├── 13.jpg
│ │ ├── 14.jpg
│ │ ├── 15.jpg
│ │ ├── 16.jpg
│ │ ├── 17.jpg
│ │ ├── 18.jpg
│ │ ├── 19.jpg
│ │ ├── 2.jpg
│ │ ├── 20.jpg
│ │ ├── 21.jpg
│ │ ├── 22.jpg
│ │ ├── 23.jpg
│ │ ├── 24.jpg
│ │ ├── 25.jpg
│ │ ├── 26.jpg
│ │ ├── 3.jpg
│ │ ├── 4.jpg
│ │ ├── 5.jpg
│ │ ├── 6.jpg
│ │ ├── 7.jpg
│ │ ├── 8.jpg
│ │ └── 9.jpg
│ ├── realestate1.jpeg
│ ├── realestate2.jpg
│ ├── realestate3.jpeg
│ ├── realestate4.jpg
│ ├── refresh.png
│ ├── search-background.jpg
│ ├── sendgrid.png
│ ├── trello.png
│ ├── vevo.png
│ ├── windows.png
│ ├── zappos.png
│ └── zendesk.png
├── index.php
├── js
│ ├── app.js
│ └── cookie.js
├── mix-manifest.json
├── robots.txt
└── vendor
│ ├── sweetalert
│ └── sweetalert.all.js
│ └── telescope
│ ├── app-dark.css
│ ├── app.css
│ ├── app.js
│ ├── favicon.ico
│ └── mix-manifest.json
├── resources
├── js
│ ├── app.js
│ ├── bootstrap.js
│ └── components
│ │ └── ExampleComponent.vue
├── lang
│ └── en
│ │ ├── auth.php
│ │ ├── en.json
│ │ ├── pagination.php
│ │ ├── passwords.php
│ │ └── validation.php
├── sass
│ ├── _real-estate.scss
│ ├── _variables.scss
│ ├── app.scss
│ ├── inc
│ │ ├── _default.scss
│ │ ├── _footer.scss
│ │ ├── _navbar.scss
│ │ └── _roboto-font.scss
│ └── pages
│ │ ├── _account.scss
│ │ ├── _index-page.scss
│ │ ├── _login-page.scss
│ │ └── _property.scss
└── views
│ ├── auth
│ ├── login.blade.php
│ ├── original-login.blade.php
│ ├── passwords
│ │ ├── confirm.blade.php
│ │ ├── email.blade.php
│ │ └── reset.blade.php
│ ├── register.blade.php
│ └── verify.blade.php
│ ├── inc
│ ├── account-footer.blade.php
│ ├── account-nav.blade.php
│ ├── flash-message.blade.php
│ ├── footer.blade.php
│ └── navbar.blade.php
│ ├── layouts
│ ├── account-layout.blade.php
│ ├── app.blade.php
│ ├── list-layout.blade.php
│ ├── login.blade.php
│ ├── master-layout.blade.php
│ └── real-estate.blade.php
│ ├── real-estate
│ ├── account
│ │ ├── property-create.blade.php
│ │ ├── property-edit.blade.php
│ │ ├── property-listings.blade.php
│ │ ├── rental-resume.blade.php
│ │ ├── saved-homes.blade.php
│ │ └── user-profile.blade.php
│ ├── index.blade.php
│ ├── property
│ │ ├── list.blade.php
│ │ ├── mortage.blade.php
│ │ ├── rent.blade.php
│ │ └── show.blade.php
│ └── testshow.blade.php
│ └── vendor
│ └── sweetalert
│ └── alert.blade.php
├── routes
├── api.php
├── channels.php
├── console.php
└── web.php
├── server.php
├── storage
├── app
│ ├── .gitignore
│ └── public
│ │ └── .gitignore
├── framework
│ ├── .gitignore
│ ├── cache
│ │ ├── .gitignore
│ │ └── data
│ │ │ └── .gitignore
│ ├── sessions
│ │ └── .gitignore
│ ├── testing
│ │ └── .gitignore
│ └── views
│ │ └── .gitignore
└── logs
│ └── .gitignore
├── tests
├── CreatesApplication.php
├── Feature
│ ├── AccountCrudTest.php
│ └── ExampleTest.php
├── TestCase.php
└── Unit
│ └── ExampleTest.php
└── webpack.mix.js
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | charset = utf-8
5 | end_of_line = lf
6 | insert_final_newline = true
7 | indent_style = space
8 | indent_size = 4
9 | trim_trailing_whitespace = true
10 |
11 | [*.md]
12 | trim_trailing_whitespace = false
13 |
14 | [*.{yml,yaml}]
15 | indent_size = 2
16 |
--------------------------------------------------------------------------------
/.env.example:
--------------------------------------------------------------------------------
1 | APP_NAME=Laravel
2 | APP_ENV=local
3 | APP_KEY=
4 | APP_DEBUG=true
5 | APP_URL=http://localhost
6 |
7 | LOG_CHANNEL=stack
8 |
9 | DB_CONNECTION=mysql
10 | DB_HOST=127.0.0.1
11 | DB_PORT=3306
12 | DB_DATABASE=laravel
13 | DB_USERNAME=root
14 | DB_PASSWORD=
15 |
16 | BROADCAST_DRIVER=log
17 | CACHE_DRIVER=file
18 | QUEUE_CONNECTION=sync
19 | SESSION_DRIVER=file
20 | SESSION_LIFETIME=120
21 |
22 | REDIS_HOST=127.0.0.1
23 | REDIS_PASSWORD=null
24 | REDIS_PORT=6379
25 |
26 | MAIL_MAILER=smtp
27 | MAIL_HOST=smtp.mailtrap.io
28 | MAIL_PORT=2525
29 | MAIL_USERNAME=null
30 | MAIL_PASSWORD=null
31 | MAIL_ENCRYPTION=null
32 | MAIL_FROM_ADDRESS=null
33 | MAIL_FROM_NAME="${APP_NAME}"
34 |
35 | AWS_ACCESS_KEY_ID=
36 | AWS_SECRET_ACCESS_KEY=
37 | AWS_DEFAULT_REGION=us-east-1
38 | AWS_BUCKET=
39 |
40 | PUSHER_APP_ID=
41 | PUSHER_APP_KEY=
42 | PUSHER_APP_SECRET=
43 | PUSHER_APP_CLUSTER=mt1
44 |
45 | MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
46 | MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
47 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.scss linguist-vendored
4 | *.js linguist-vendored
5 | CHANGELOG.md export-ignore
6 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 | /public/hot
3 | /public/storage
4 | /storage/*.key
5 | /vendor
6 | .env
7 | .env.backup
8 | .phpunit.result.cache
9 | Homestead.json
10 | Homestead.yaml
11 | npm-debug.log
12 | yarn-error.log
13 |
--------------------------------------------------------------------------------
/.styleci.yml:
--------------------------------------------------------------------------------
1 | php:
2 | preset: laravel
3 | disabled:
4 | - unused_use
5 | finder:
6 | not-name:
7 | - index.php
8 | - server.php
9 | js:
10 | finder:
11 | not-name:
12 | - webpack.mix.js
13 | css: true
14 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 | # About Nepestate
3 |
4 | Nepestate is a Real-estate website made with laravel and vue js.
5 |
6 | >Installation at the bottom
7 |
8 |
9 |
10 | ## Screenshots of this app
11 |
12 |
13 |
14 |
15 |
17 |
18 |
20 |
21 |
23 |
24 |
25 |
By continuing, I accept Nepestate's Terms of use and Privacy Policy.
36 |Id | 17 |Title | 18 |Image | 19 |On sale(1/0) | 20 |Created At | 21 |Actions | 22 |
---|
Renter in {{$user->userInfo->location}}
12 |{{$user->email}}
13 |You haven't added any homes yet.
12 |Start Searching for property to add now.
13 |Nepestate Guides
69 |Everything you need to know
70 | when looking at different types of homes for sale all in
71 | types of homes for sale all in one place.
72 |
Buyers Guides
83 | How to buy 84 | 85 |Renters Guides
95 | How to rent 96 |Sellers Guides
104 | How to sell 105 | 106 |15 |
16 |