├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Exports │ └── PermissionExport.php ├── Http │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── Role.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── Auth │ │ └── LoginRequest.php │ │ └── ProfileUpdateRequest.php ├── Imports │ └── PermissionImport.php ├── Mail │ └── ScheduleMail.php ├── Models │ ├── Amenities.php │ ├── BlogCategory.php │ ├── BlogPost.php │ ├── ChatMessage.php │ ├── Comment.php │ ├── Compare.php │ ├── Facility.php │ ├── MultiImage.php │ ├── PackagePlan.php │ ├── Property.php │ ├── PropertyMessage.php │ ├── PropertyType.php │ ├── Schedule.php │ ├── SiteSetting.php │ ├── SmtpSetting.php │ ├── State.php │ ├── Testimonial.php │ ├── User.php │ └── Wishlist.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php └── View │ └── Components │ ├── AppLayout.php │ └── GuestLayout.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── dompdf.php ├── excel.php ├── filesystems.php ├── hashing.php ├── image.php ├── logging.php ├── mail.php ├── permission.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2023_03_06_182633_create_property_types_table.php │ ├── 2023_03_06_200920_create_amenities_table.php │ ├── 2023_03_08_183652_create_properties_table.php │ ├── 2023_03_08_190049_create_multi_images_table.php │ ├── 2023_03_08_190335_create_facilities_table.php │ ├── 2023_03_16_193348_create_package_plans_table.php │ ├── 2023_03_20_182407_create_wishlists_table.php │ ├── 2023_03_21_195901_create_compares_table.php │ ├── 2023_03_23_193839_create_property_messages_table.php │ ├── 2023_03_25_204916_create_states_table.php │ ├── 2023_03_27_205046_create_testimonials_table.php │ ├── 2023_03_31_184038_create_blog_categories_table.php │ ├── 2023_03_31_201542_create_blog_posts_table.php │ ├── 2023_04_02_190638_create_comments_table.php │ ├── 2023_04_03_192601_create_schedules_table.php │ ├── 2023_04_04_182527_create_smtp_settings_table.php │ ├── 2023_04_04_201200_create_site_settings_table.php │ ├── 2023_04_08_181939_create_permission_tables.php │ └── 2023_04_17_185636_create_chat_messages_table.php └── seeders │ ├── DatabaseSeeder.php │ └── UsersTableSeeder.php ├── master ├── package-lock.json ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── backend │ └── assets │ │ ├── css │ │ ├── demo1 │ │ │ ├── style-rtl.css │ │ │ ├── style-rtl.min.css │ │ │ ├── style.css │ │ │ └── style.min.css │ │ ├── demo2 │ │ │ ├── style-rtl.css │ │ │ ├── style-rtl.min.css │ │ │ ├── style.css │ │ │ └── style.min.css │ │ ├── demo3 │ │ │ ├── style-rtl.css │ │ │ ├── style-rtl.min.css │ │ │ ├── style.css │ │ │ └── style.min.css │ │ ├── demo4 │ │ │ ├── style-rtl.css │ │ │ ├── style-rtl.min.css │ │ │ ├── style.css │ │ │ └── style.min.css │ │ └── maps │ │ │ ├── demo1 │ │ │ └── style.css.map │ │ │ ├── demo2 │ │ │ └── style.css.map │ │ │ ├── demo3 │ │ │ └── style.css.map │ │ │ └── demo4 │ │ │ └── style.css.map │ │ ├── fonts │ │ └── feather-font │ │ │ ├── .gitignore │ │ │ ├── css │ │ │ └── iconfont.css │ │ │ ├── examples │ │ │ ├── index.css │ │ │ └── index.html │ │ │ └── fonts │ │ │ ├── feather.eot │ │ │ ├── feather.svg │ │ │ ├── feather.ttf │ │ │ └── feather.woff │ │ ├── images │ │ ├── favicon.png │ │ ├── others │ │ │ ├── 404.svg │ │ │ ├── logo-placeholder.png │ │ │ └── placeholder.jpg │ │ └── screenshots │ │ │ ├── dark.jpg │ │ │ └── light.jpg │ │ ├── js │ │ ├── ace.js │ │ ├── apexcharts-dark-rtl.js │ │ ├── apexcharts-dark.js │ │ ├── apexcharts-light-rtl.js │ │ ├── apexcharts-light.js │ │ ├── bootstrap-maxlength.js │ │ ├── carousel-rtl.js │ │ ├── carousel.js │ │ ├── chartjs-dark.js │ │ ├── chartjs-light.js │ │ ├── chat.js │ │ ├── code │ │ │ ├── code.js │ │ │ └── validate.min.js │ │ ├── cropper.js │ │ ├── dashboard-dark.js │ │ ├── dashboard-light.js │ │ ├── data-table.js │ │ ├── demo.js │ │ ├── dropify.js │ │ ├── dropzone.js │ │ ├── easymde.js │ │ ├── email.js │ │ ├── flatpickr.js │ │ ├── form-validation.js │ │ ├── fullcalendar.js │ │ ├── inputmask.js │ │ ├── jquery.flot-dark.js │ │ ├── jquery.flot-light.js │ │ ├── morrisjs-dark.js │ │ ├── morrisjs-light.js │ │ ├── peity.js │ │ ├── pickr.js │ │ ├── select2.js │ │ ├── sortablejs-dark.js │ │ ├── sortablejs-light.js │ │ ├── sparkline.js │ │ ├── sweet-alert.js │ │ ├── tags-input.js │ │ ├── template.js │ │ ├── tinymce.js │ │ ├── typeahead.js │ │ └── wizard.js │ │ ├── scss │ │ ├── common │ │ │ ├── _background.scss │ │ │ ├── _demo.scss │ │ │ ├── _functions.scss │ │ │ ├── _helpers.scss │ │ │ ├── _misc.scss │ │ │ ├── _reset.scss │ │ │ ├── _typography.scss │ │ │ ├── _utilities.scss │ │ │ ├── components │ │ │ │ ├── _auth.scss │ │ │ │ ├── _badges.scss │ │ │ │ ├── _bootstrap-alert.scss │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _cards.scss │ │ │ │ ├── _chat.scss │ │ │ │ ├── _dashboard.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _timeline.scss │ │ │ │ └── email │ │ │ │ │ └── _inbox.scss │ │ │ └── mixins │ │ │ │ ├── _animation.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _misc.scss │ │ │ │ └── _width.scss │ │ ├── demo1 │ │ │ ├── _layouts.scss │ │ │ ├── _navbar.scss │ │ │ ├── _sidebar.scss │ │ │ ├── _variables.scss │ │ │ ├── _vertical-wrapper.scss │ │ │ └── style.scss │ │ ├── demo2 │ │ │ ├── _layouts.scss │ │ │ ├── _navbar.scss │ │ │ ├── _sidebar.scss │ │ │ ├── _variables.scss │ │ │ ├── _vertical-wrapper.scss │ │ │ └── style.scss │ │ ├── demo3 │ │ │ ├── _horizontal-wrapper.scss │ │ │ ├── _layouts.scss │ │ │ ├── _navbar.scss │ │ │ ├── _variables.scss │ │ │ └── style.scss │ │ ├── demo4 │ │ │ ├── _horizontal-wrapper.scss │ │ │ ├── _layouts.scss │ │ │ ├── _navbar.scss │ │ │ ├── _variables.scss │ │ │ └── style.scss │ │ ├── theme-dark │ │ │ ├── _variables.scss │ │ │ └── components │ │ │ │ └── plugin-overrides │ │ │ │ ├── _ace.scss │ │ │ │ ├── _apex-charts.scss │ │ │ │ ├── _data-tables.scss │ │ │ │ ├── _dropify.scss │ │ │ │ ├── _dropzone.scss │ │ │ │ ├── _easymde.scss │ │ │ │ ├── _flatpickr.scss │ │ │ │ ├── _full-calendar.scss │ │ │ │ ├── _jquery-flot.scss │ │ │ │ ├── _morrisjs.scss │ │ │ │ ├── _peity.scss │ │ │ │ ├── _perfect-scrollbar.scss │ │ │ │ ├── _select2.scss │ │ │ │ ├── _sweet-alert.scss │ │ │ │ ├── _tags-input.scss │ │ │ │ ├── _tinymce.scss │ │ │ │ ├── _typeahead.scss │ │ │ │ └── _wizard.scss │ │ └── theme-light │ │ │ ├── _variables.scss │ │ │ └── components │ │ │ └── plugin-overrides │ │ │ ├── _ace.scss │ │ │ ├── _apex-charts.scss │ │ │ ├── _data-tables.scss │ │ │ ├── _dropify.scss │ │ │ ├── _dropzone.scss │ │ │ ├── _easymde.scss │ │ │ ├── _flatpickr.scss │ │ │ ├── _full-calendar.scss │ │ │ ├── _jquery-flot.scss │ │ │ ├── _morrisjs.scss │ │ │ ├── _peity.scss │ │ │ ├── _perfect-scrollbar.scss │ │ │ ├── _select2.scss │ │ │ ├── _sweet-alert.scss │ │ │ ├── _tags-input.scss │ │ │ ├── _tinymce.scss │ │ │ ├── _typeahead.scss │ │ │ └── _wizard.scss │ │ └── vendors │ │ ├── ace-builds │ │ └── src-min │ │ │ ├── ace.js │ │ │ ├── ext-beautify.js │ │ │ ├── ext-code_lens.js │ │ │ ├── ext-elastic_tabstops_lite.js │ │ │ ├── ext-emmet.js │ │ │ ├── ext-error_marker.js │ │ │ ├── ext-hardwrap.js │ │ │ ├── ext-keybinding_menu.js │ │ │ ├── ext-language_tools.js │ │ │ ├── ext-linking.js │ │ │ ├── ext-modelist.js │ │ │ ├── ext-options.js │ │ │ ├── ext-prompt.js │ │ │ ├── ext-rtl.js │ │ │ ├── ext-searchbox.js │ │ │ ├── ext-settings_menu.js │ │ │ ├── ext-spellcheck.js │ │ │ ├── ext-split.js │ │ │ ├── ext-static_highlight.js │ │ │ ├── ext-statusbar.js │ │ │ ├── ext-textarea.js │ │ │ ├── ext-themelist.js │ │ │ ├── ext-whitespace.js │ │ │ ├── keybinding-emacs.js │ │ │ ├── keybinding-sublime.js │ │ │ ├── keybinding-vim.js │ │ │ ├── keybinding-vscode.js │ │ │ ├── mode-abap.js │ │ │ ├── mode-abc.js │ │ │ ├── mode-actionscript.js │ │ │ ├── mode-ada.js │ │ │ ├── mode-alda.js │ │ │ ├── mode-apache_conf.js │ │ │ ├── mode-apex.js │ │ │ ├── mode-applescript.js │ │ │ ├── mode-aql.js │ │ │ ├── mode-asciidoc.js │ │ │ ├── mode-asl.js │ │ │ ├── mode-assembly_x86.js │ │ │ ├── mode-autohotkey.js │ │ │ ├── mode-batchfile.js │ │ │ ├── mode-c9search.js │ │ │ ├── mode-c_cpp.js │ │ │ ├── mode-cirru.js │ │ │ ├── mode-clojure.js │ │ │ ├── mode-cobol.js │ │ │ ├── mode-coffee.js │ │ │ ├── mode-coldfusion.js │ │ │ ├── mode-crystal.js │ │ │ ├── mode-csharp.js │ │ │ ├── mode-csound_document.js │ │ │ ├── mode-csound_orchestra.js │ │ │ ├── mode-csound_score.js │ │ │ ├── mode-csp.js │ │ │ ├── mode-css.js │ │ │ ├── mode-curly.js │ │ │ ├── mode-d.js │ │ │ ├── mode-dart.js │ │ │ ├── mode-diff.js │ │ │ ├── mode-django.js │ │ │ ├── mode-dockerfile.js │ │ │ ├── mode-dot.js │ │ │ ├── mode-drools.js │ │ │ ├── mode-edifact.js │ │ │ ├── mode-eiffel.js │ │ │ ├── mode-ejs.js │ │ │ ├── mode-elixir.js │ │ │ ├── mode-elm.js │ │ │ ├── mode-erlang.js │ │ │ ├── mode-forth.js │ │ │ ├── mode-fortran.js │ │ │ ├── mode-fsharp.js │ │ │ ├── mode-fsl.js │ │ │ ├── mode-ftl.js │ │ │ ├── mode-gcode.js │ │ │ ├── mode-gherkin.js │ │ │ ├── mode-gitignore.js │ │ │ ├── mode-glsl.js │ │ │ ├── mode-gobstones.js │ │ │ ├── mode-golang.js │ │ │ ├── mode-graphqlschema.js │ │ │ ├── mode-groovy.js │ │ │ ├── mode-haml.js │ │ │ ├── mode-handlebars.js │ │ │ ├── mode-haskell.js │ │ │ ├── mode-haskell_cabal.js │ │ │ ├── mode-haxe.js │ │ │ ├── mode-hjson.js │ │ │ ├── mode-html.js │ │ │ ├── mode-html_elixir.js │ │ │ ├── mode-html_ruby.js │ │ │ ├── mode-ini.js │ │ │ ├── mode-io.js │ │ │ ├── mode-ion.js │ │ │ ├── mode-jack.js │ │ │ ├── mode-jade.js │ │ │ ├── mode-java.js │ │ │ ├── mode-javascript.js │ │ │ ├── mode-json.js │ │ │ ├── mode-json5.js │ │ │ ├── mode-jsoniq.js │ │ │ ├── mode-jsp.js │ │ │ ├── mode-jssm.js │ │ │ ├── mode-jsx.js │ │ │ ├── mode-julia.js │ │ │ ├── mode-kotlin.js │ │ │ ├── mode-latex.js │ │ │ ├── mode-latte.js │ │ │ ├── mode-less.js │ │ │ ├── mode-liquid.js │ │ │ ├── mode-lisp.js │ │ │ ├── mode-livescript.js │ │ │ ├── mode-logiql.js │ │ │ ├── mode-logtalk.js │ │ │ ├── mode-lsl.js │ │ │ ├── mode-lua.js │ │ │ ├── mode-luapage.js │ │ │ ├── mode-lucene.js │ │ │ ├── mode-makefile.js │ │ │ ├── mode-markdown.js │ │ │ ├── mode-mask.js │ │ │ ├── mode-matlab.js │ │ │ ├── mode-maze.js │ │ │ ├── mode-mediawiki.js │ │ │ ├── mode-mel.js │ │ │ ├── mode-mips.js │ │ │ ├── mode-mixal.js │ │ │ ├── mode-mushcode.js │ │ │ ├── mode-mysql.js │ │ │ ├── mode-nginx.js │ │ │ ├── mode-nim.js │ │ │ ├── mode-nix.js │ │ │ ├── mode-nsis.js │ │ │ ├── mode-nunjucks.js │ │ │ ├── mode-objectivec.js │ │ │ ├── mode-ocaml.js │ │ │ ├── mode-partiql.js │ │ │ ├── mode-pascal.js │ │ │ ├── mode-perl.js │ │ │ ├── mode-pgsql.js │ │ │ ├── mode-php.js │ │ │ ├── mode-php_laravel_blade.js │ │ │ ├── mode-pig.js │ │ │ ├── mode-plain_text.js │ │ │ ├── mode-powershell.js │ │ │ ├── mode-praat.js │ │ │ ├── mode-prisma.js │ │ │ ├── mode-prolog.js │ │ │ ├── mode-properties.js │ │ │ ├── mode-protobuf.js │ │ │ ├── mode-puppet.js │ │ │ ├── mode-python.js │ │ │ ├── mode-qml.js │ │ │ ├── mode-r.js │ │ │ ├── mode-raku.js │ │ │ ├── mode-razor.js │ │ │ ├── mode-rdoc.js │ │ │ ├── mode-red.js │ │ │ ├── mode-redshift.js │ │ │ ├── mode-rhtml.js │ │ │ ├── mode-robot.js │ │ │ ├── mode-rst.js │ │ │ ├── mode-ruby.js │ │ │ ├── mode-rust.js │ │ │ ├── mode-sac.js │ │ │ ├── mode-sass.js │ │ │ ├── mode-scad.js │ │ │ ├── mode-scala.js │ │ │ ├── mode-scheme.js │ │ │ ├── mode-scrypt.js │ │ │ ├── mode-scss.js │ │ │ ├── mode-sh.js │ │ │ ├── mode-sjs.js │ │ │ ├── mode-slim.js │ │ │ ├── mode-smarty.js │ │ │ ├── mode-smithy.js │ │ │ ├── mode-snippets.js │ │ │ ├── mode-soy_template.js │ │ │ ├── mode-space.js │ │ │ ├── mode-sparql.js │ │ │ ├── mode-sql.js │ │ │ ├── mode-sqlserver.js │ │ │ ├── mode-stylus.js │ │ │ ├── mode-svg.js │ │ │ ├── mode-swift.js │ │ │ ├── mode-tcl.js │ │ │ ├── mode-terraform.js │ │ │ ├── mode-tex.js │ │ │ ├── mode-text.js │ │ │ ├── mode-textile.js │ │ │ ├── mode-toml.js │ │ │ ├── mode-tsx.js │ │ │ ├── mode-turtle.js │ │ │ ├── mode-twig.js │ │ │ ├── mode-typescript.js │ │ │ ├── mode-vala.js │ │ │ ├── mode-vbscript.js │ │ │ ├── mode-velocity.js │ │ │ ├── mode-verilog.js │ │ │ ├── mode-vhdl.js │ │ │ ├── mode-visualforce.js │ │ │ ├── mode-wollok.js │ │ │ ├── mode-xml.js │ │ │ ├── mode-xquery.js │ │ │ ├── mode-yaml.js │ │ │ ├── mode-zeek.js │ │ │ ├── snippets │ │ │ ├── abap.js │ │ │ ├── abc.js │ │ │ ├── actionscript.js │ │ │ ├── ada.js │ │ │ ├── alda.js │ │ │ ├── apache_conf.js │ │ │ ├── apex.js │ │ │ ├── applescript.js │ │ │ ├── aql.js │ │ │ ├── asciidoc.js │ │ │ ├── asl.js │ │ │ ├── assembly_x86.js │ │ │ ├── autohotkey.js │ │ │ ├── batchfile.js │ │ │ ├── c9search.js │ │ │ ├── c_cpp.js │ │ │ ├── cirru.js │ │ │ ├── clojure.js │ │ │ ├── cobol.js │ │ │ ├── coffee.js │ │ │ ├── coldfusion.js │ │ │ ├── crystal.js │ │ │ ├── csharp.js │ │ │ ├── csound_document.js │ │ │ ├── csound_orchestra.js │ │ │ ├── csound_score.js │ │ │ ├── csp.js │ │ │ ├── css.js │ │ │ ├── curly.js │ │ │ ├── d.js │ │ │ ├── dart.js │ │ │ ├── diff.js │ │ │ ├── django.js │ │ │ ├── dockerfile.js │ │ │ ├── dot.js │ │ │ ├── drools.js │ │ │ ├── edifact.js │ │ │ ├── eiffel.js │ │ │ ├── ejs.js │ │ │ ├── elixir.js │ │ │ ├── elm.js │ │ │ ├── erlang.js │ │ │ ├── forth.js │ │ │ ├── fortran.js │ │ │ ├── fsharp.js │ │ │ ├── fsl.js │ │ │ ├── ftl.js │ │ │ ├── gcode.js │ │ │ ├── gherkin.js │ │ │ ├── gitignore.js │ │ │ ├── glsl.js │ │ │ ├── gobstones.js │ │ │ ├── golang.js │ │ │ ├── graphqlschema.js │ │ │ ├── groovy.js │ │ │ ├── haml.js │ │ │ ├── handlebars.js │ │ │ ├── haskell.js │ │ │ ├── haskell_cabal.js │ │ │ ├── haxe.js │ │ │ ├── hjson.js │ │ │ ├── html.js │ │ │ ├── html_elixir.js │ │ │ ├── html_ruby.js │ │ │ ├── ini.js │ │ │ ├── io.js │ │ │ ├── ion.js │ │ │ ├── jack.js │ │ │ ├── jade.js │ │ │ ├── java.js │ │ │ ├── javascript.js │ │ │ ├── json.js │ │ │ ├── json5.js │ │ │ ├── jsoniq.js │ │ │ ├── jsp.js │ │ │ ├── jssm.js │ │ │ ├── jsx.js │ │ │ ├── julia.js │ │ │ ├── kotlin.js │ │ │ ├── latex.js │ │ │ ├── latte.js │ │ │ ├── less.js │ │ │ ├── liquid.js │ │ │ ├── lisp.js │ │ │ ├── livescript.js │ │ │ ├── logiql.js │ │ │ ├── logtalk.js │ │ │ ├── lsl.js │ │ │ ├── lua.js │ │ │ ├── luapage.js │ │ │ ├── lucene.js │ │ │ ├── makefile.js │ │ │ ├── markdown.js │ │ │ ├── mask.js │ │ │ ├── matlab.js │ │ │ ├── maze.js │ │ │ ├── mediawiki.js │ │ │ ├── mel.js │ │ │ ├── mips.js │ │ │ ├── mixal.js │ │ │ ├── mushcode.js │ │ │ ├── mysql.js │ │ │ ├── nginx.js │ │ │ ├── nim.js │ │ │ ├── nix.js │ │ │ ├── nsis.js │ │ │ ├── nunjucks.js │ │ │ ├── objectivec.js │ │ │ ├── ocaml.js │ │ │ ├── partiql.js │ │ │ ├── pascal.js │ │ │ ├── perl.js │ │ │ ├── pgsql.js │ │ │ ├── php.js │ │ │ ├── php_laravel_blade.js │ │ │ ├── pig.js │ │ │ ├── plain_text.js │ │ │ ├── powershell.js │ │ │ ├── praat.js │ │ │ ├── prisma.js │ │ │ ├── prolog.js │ │ │ ├── properties.js │ │ │ ├── protobuf.js │ │ │ ├── puppet.js │ │ │ ├── python.js │ │ │ ├── qml.js │ │ │ ├── r.js │ │ │ ├── raku.js │ │ │ ├── razor.js │ │ │ ├── rdoc.js │ │ │ ├── red.js │ │ │ ├── redshift.js │ │ │ ├── rhtml.js │ │ │ ├── robot.js │ │ │ ├── rst.js │ │ │ ├── ruby.js │ │ │ ├── rust.js │ │ │ ├── sac.js │ │ │ ├── sass.js │ │ │ ├── scad.js │ │ │ ├── scala.js │ │ │ ├── scheme.js │ │ │ ├── scrypt.js │ │ │ ├── scss.js │ │ │ ├── sh.js │ │ │ ├── sjs.js │ │ │ ├── slim.js │ │ │ ├── smarty.js │ │ │ ├── smithy.js │ │ │ ├── snippets.js │ │ │ ├── soy_template.js │ │ │ ├── space.js │ │ │ ├── sparql.js │ │ │ ├── sql.js │ │ │ ├── sqlserver.js │ │ │ ├── stylus.js │ │ │ ├── svg.js │ │ │ ├── swift.js │ │ │ ├── tcl.js │ │ │ ├── terraform.js │ │ │ ├── tex.js │ │ │ ├── text.js │ │ │ ├── textile.js │ │ │ ├── toml.js │ │ │ ├── tsx.js │ │ │ ├── turtle.js │ │ │ ├── twig.js │ │ │ ├── typescript.js │ │ │ ├── vala.js │ │ │ ├── vbscript.js │ │ │ ├── velocity.js │ │ │ ├── verilog.js │ │ │ ├── vhdl.js │ │ │ ├── visualforce.js │ │ │ ├── wollok.js │ │ │ ├── xml.js │ │ │ ├── xquery.js │ │ │ ├── yaml.js │ │ │ └── zeek.js │ │ │ ├── theme-ambiance.js │ │ │ ├── theme-chaos.js │ │ │ ├── theme-chrome.js │ │ │ ├── theme-cloud9_day.js │ │ │ ├── theme-cloud9_night.js │ │ │ ├── theme-cloud9_night_low_color.js │ │ │ ├── theme-clouds.js │ │ │ ├── theme-clouds_midnight.js │ │ │ ├── theme-cobalt.js │ │ │ ├── theme-crimson_editor.js │ │ │ ├── theme-dawn.js │ │ │ ├── theme-dracula.js │ │ │ ├── theme-dreamweaver.js │ │ │ ├── theme-eclipse.js │ │ │ ├── theme-github.js │ │ │ ├── theme-gob.js │ │ │ ├── theme-gruvbox.js │ │ │ ├── theme-gruvbox_dark_hard.js │ │ │ ├── theme-gruvbox_light_hard.js │ │ │ ├── theme-idle_fingers.js │ │ │ ├── theme-iplastic.js │ │ │ ├── theme-katzenmilch.js │ │ │ ├── theme-kr_theme.js │ │ │ ├── theme-kuroir.js │ │ │ ├── theme-merbivore.js │ │ │ ├── theme-merbivore_soft.js │ │ │ ├── theme-mono_industrial.js │ │ │ ├── theme-monokai.js │ │ │ ├── theme-nord_dark.js │ │ │ ├── theme-one_dark.js │ │ │ ├── theme-pastel_on_dark.js │ │ │ ├── theme-solarized_dark.js │ │ │ ├── theme-solarized_light.js │ │ │ ├── theme-sqlserver.js │ │ │ ├── theme-terminal.js │ │ │ ├── theme-textmate.js │ │ │ ├── theme-tomorrow.js │ │ │ ├── theme-tomorrow_night.js │ │ │ ├── theme-tomorrow_night_blue.js │ │ │ ├── theme-tomorrow_night_bright.js │ │ │ ├── theme-tomorrow_night_eighties.js │ │ │ ├── theme-twilight.js │ │ │ ├── theme-vibrant_ink.js │ │ │ ├── theme-xcode.js │ │ │ ├── worker-base.js │ │ │ ├── worker-coffee.js │ │ │ ├── worker-css.js │ │ │ ├── worker-html.js │ │ │ ├── worker-javascript.js │ │ │ ├── worker-json.js │ │ │ ├── worker-lua.js │ │ │ ├── worker-php.js │ │ │ ├── worker-xml.js │ │ │ ├── worker-xquery.js │ │ │ └── worker-yaml.js │ │ ├── animate.css │ │ └── animate.min.css │ │ ├── apexcharts │ │ └── apexcharts.min.js │ │ ├── bootstrap-maxlength │ │ └── bootstrap-maxlength.min.js │ │ ├── chartjs │ │ └── Chart.min.js │ │ ├── clipboard │ │ └── clipboard.min.js │ │ ├── core │ │ ├── core.css │ │ └── core.js │ │ ├── cropperjs │ │ ├── cropper.min.css │ │ └── cropper.min.js │ │ ├── datatables.net-bs5 │ │ ├── dataTables.bootstrap5.css │ │ └── dataTables.bootstrap5.js │ │ ├── datatables.net │ │ └── jquery.dataTables.js │ │ ├── dropify │ │ ├── dist │ │ │ ├── dropify.min.css │ │ │ └── dropify.min.js │ │ └── fonts │ │ │ ├── dropify.eot │ │ │ ├── dropify.svg │ │ │ ├── dropify.ttf │ │ │ └── dropify.woff │ │ ├── dropzone │ │ ├── dropzone.min.css │ │ └── dropzone.min.js │ │ ├── easymde │ │ ├── easymde.min.css │ │ └── easymde.min.js │ │ ├── feather-icons │ │ ├── feather-sprite.svg │ │ ├── feather.js │ │ ├── feather.js.map │ │ ├── feather.min.js │ │ ├── feather.min.js.map │ │ └── icons.json │ │ ├── flag-icon-css │ │ ├── css │ │ │ └── flag-icon.min.css │ │ └── flags │ │ │ ├── 1x1 │ │ │ ├── ad.svg │ │ │ ├── ae.svg │ │ │ ├── af.svg │ │ │ ├── ag.svg │ │ │ ├── ai.svg │ │ │ ├── al.svg │ │ │ ├── am.svg │ │ │ ├── ao.svg │ │ │ ├── aq.svg │ │ │ ├── ar.svg │ │ │ ├── as.svg │ │ │ ├── at.svg │ │ │ ├── au.svg │ │ │ ├── aw.svg │ │ │ ├── ax.svg │ │ │ ├── az.svg │ │ │ ├── ba.svg │ │ │ ├── bb.svg │ │ │ ├── bd.svg │ │ │ ├── be.svg │ │ │ ├── bf.svg │ │ │ ├── bg.svg │ │ │ ├── bh.svg │ │ │ ├── bi.svg │ │ │ ├── bj.svg │ │ │ ├── bl.svg │ │ │ ├── bm.svg │ │ │ ├── bn.svg │ │ │ ├── bo.svg │ │ │ ├── bq.svg │ │ │ ├── br.svg │ │ │ ├── bs.svg │ │ │ ├── bt.svg │ │ │ ├── bv.svg │ │ │ ├── bw.svg │ │ │ ├── by.svg │ │ │ ├── bz.svg │ │ │ ├── ca.svg │ │ │ ├── cc.svg │ │ │ ├── cd.svg │ │ │ ├── cf.svg │ │ │ ├── cg.svg │ │ │ ├── ch.svg │ │ │ ├── ci.svg │ │ │ ├── ck.svg │ │ │ ├── cl.svg │ │ │ ├── cm.svg │ │ │ ├── cn.svg │ │ │ ├── co.svg │ │ │ ├── cr.svg │ │ │ ├── cu.svg │ │ │ ├── cv.svg │ │ │ ├── cw.svg │ │ │ ├── cx.svg │ │ │ ├── cy.svg │ │ │ ├── cz.svg │ │ │ ├── de.svg │ │ │ ├── dj.svg │ │ │ ├── dk.svg │ │ │ ├── dm.svg │ │ │ ├── do.svg │ │ │ ├── dz.svg │ │ │ ├── ec.svg │ │ │ ├── ee.svg │ │ │ ├── eg.svg │ │ │ ├── eh.svg │ │ │ ├── er.svg │ │ │ ├── es-ca.svg │ │ │ ├── es-ga.svg │ │ │ ├── es.svg │ │ │ ├── et.svg │ │ │ ├── eu.svg │ │ │ ├── fi.svg │ │ │ ├── fj.svg │ │ │ ├── fk.svg │ │ │ ├── fm.svg │ │ │ ├── fo.svg │ │ │ ├── fr.svg │ │ │ ├── ga.svg │ │ │ ├── gb-eng.svg │ │ │ ├── gb-nir.svg │ │ │ ├── gb-sct.svg │ │ │ ├── gb-wls.svg │ │ │ ├── gb.svg │ │ │ ├── gd.svg │ │ │ ├── ge.svg │ │ │ ├── gf.svg │ │ │ ├── gg.svg │ │ │ ├── gh.svg │ │ │ ├── gi.svg │ │ │ ├── gl.svg │ │ │ ├── gm.svg │ │ │ ├── gn.svg │ │ │ ├── gp.svg │ │ │ ├── gq.svg │ │ │ ├── gr.svg │ │ │ ├── gs.svg │ │ │ ├── gt.svg │ │ │ ├── gu.svg │ │ │ ├── gw.svg │ │ │ ├── gy.svg │ │ │ ├── hk.svg │ │ │ ├── hm.svg │ │ │ ├── hn.svg │ │ │ ├── hr.svg │ │ │ ├── ht.svg │ │ │ ├── hu.svg │ │ │ ├── id.svg │ │ │ ├── ie.svg │ │ │ ├── il.svg │ │ │ ├── im.svg │ │ │ ├── in.svg │ │ │ ├── io.svg │ │ │ ├── iq.svg │ │ │ ├── ir.svg │ │ │ ├── is.svg │ │ │ ├── it.svg │ │ │ ├── je.svg │ │ │ ├── jm.svg │ │ │ ├── jo.svg │ │ │ ├── jp.svg │ │ │ ├── ke.svg │ │ │ ├── kg.svg │ │ │ ├── kh.svg │ │ │ ├── ki.svg │ │ │ ├── km.svg │ │ │ ├── kn.svg │ │ │ ├── kp.svg │ │ │ ├── kr.svg │ │ │ ├── kw.svg │ │ │ ├── ky.svg │ │ │ ├── kz.svg │ │ │ ├── la.svg │ │ │ ├── lb.svg │ │ │ ├── lc.svg │ │ │ ├── li.svg │ │ │ ├── lk.svg │ │ │ ├── lr.svg │ │ │ ├── ls.svg │ │ │ ├── lt.svg │ │ │ ├── lu.svg │ │ │ ├── lv.svg │ │ │ ├── ly.svg │ │ │ ├── ma.svg │ │ │ ├── mc.svg │ │ │ ├── md.svg │ │ │ ├── me.svg │ │ │ ├── mf.svg │ │ │ ├── mg.svg │ │ │ ├── mh.svg │ │ │ ├── mk.svg │ │ │ ├── ml.svg │ │ │ ├── mm.svg │ │ │ ├── mn.svg │ │ │ ├── mo.svg │ │ │ ├── mp.svg │ │ │ ├── mq.svg │ │ │ ├── mr.svg │ │ │ ├── ms.svg │ │ │ ├── mt.svg │ │ │ ├── mu.svg │ │ │ ├── mv.svg │ │ │ ├── mw.svg │ │ │ ├── mx.svg │ │ │ ├── my.svg │ │ │ ├── mz.svg │ │ │ ├── na.svg │ │ │ ├── nc.svg │ │ │ ├── ne.svg │ │ │ ├── nf.svg │ │ │ ├── ng.svg │ │ │ ├── ni.svg │ │ │ ├── nl.svg │ │ │ ├── no.svg │ │ │ ├── np.svg │ │ │ ├── nr.svg │ │ │ ├── nu.svg │ │ │ ├── nz.svg │ │ │ ├── om.svg │ │ │ ├── pa.svg │ │ │ ├── pe.svg │ │ │ ├── pf.svg │ │ │ ├── pg.svg │ │ │ ├── ph.svg │ │ │ ├── pk.svg │ │ │ ├── pl.svg │ │ │ ├── pm.svg │ │ │ ├── pn.svg │ │ │ ├── pr.svg │ │ │ ├── ps.svg │ │ │ ├── pt.svg │ │ │ ├── pw.svg │ │ │ ├── py.svg │ │ │ ├── qa.svg │ │ │ ├── re.svg │ │ │ ├── ro.svg │ │ │ ├── rs.svg │ │ │ ├── ru.svg │ │ │ ├── rw.svg │ │ │ ├── sa.svg │ │ │ ├── sb.svg │ │ │ ├── sc.svg │ │ │ ├── sd.svg │ │ │ ├── se.svg │ │ │ ├── sg.svg │ │ │ ├── sh.svg │ │ │ ├── si.svg │ │ │ ├── sj.svg │ │ │ ├── sk.svg │ │ │ ├── sl.svg │ │ │ ├── sm.svg │ │ │ ├── sn.svg │ │ │ ├── so.svg │ │ │ ├── sr.svg │ │ │ ├── ss.svg │ │ │ ├── st.svg │ │ │ ├── sv.svg │ │ │ ├── sx.svg │ │ │ ├── sy.svg │ │ │ ├── sz.svg │ │ │ ├── tc.svg │ │ │ ├── td.svg │ │ │ ├── tf.svg │ │ │ ├── tg.svg │ │ │ ├── th.svg │ │ │ ├── tj.svg │ │ │ ├── tk.svg │ │ │ ├── tl.svg │ │ │ ├── tm.svg │ │ │ ├── tn.svg │ │ │ ├── to.svg │ │ │ ├── tr.svg │ │ │ ├── tt.svg │ │ │ ├── tv.svg │ │ │ ├── tw.svg │ │ │ ├── tz.svg │ │ │ ├── ua.svg │ │ │ ├── ug.svg │ │ │ ├── um.svg │ │ │ ├── un.svg │ │ │ ├── us.svg │ │ │ ├── uy.svg │ │ │ ├── uz.svg │ │ │ ├── va.svg │ │ │ ├── vc.svg │ │ │ ├── ve.svg │ │ │ ├── vg.svg │ │ │ ├── vi.svg │ │ │ ├── vn.svg │ │ │ ├── vu.svg │ │ │ ├── wf.svg │ │ │ ├── ws.svg │ │ │ ├── xk.svg │ │ │ ├── ye.svg │ │ │ ├── yt.svg │ │ │ ├── za.svg │ │ │ ├── zm.svg │ │ │ └── zw.svg │ │ │ └── 4x3 │ │ │ ├── ad.svg │ │ │ ├── ae.svg │ │ │ ├── af.svg │ │ │ ├── ag.svg │ │ │ ├── ai.svg │ │ │ ├── al.svg │ │ │ ├── am.svg │ │ │ ├── ao.svg │ │ │ ├── aq.svg │ │ │ ├── ar.svg │ │ │ ├── as.svg │ │ │ ├── at.svg │ │ │ ├── au.svg │ │ │ ├── aw.svg │ │ │ ├── ax.svg │ │ │ ├── az.svg │ │ │ ├── ba.svg │ │ │ ├── bb.svg │ │ │ ├── bd.svg │ │ │ ├── be.svg │ │ │ ├── bf.svg │ │ │ ├── bg.svg │ │ │ ├── bh.svg │ │ │ ├── bi.svg │ │ │ ├── bj.svg │ │ │ ├── bl.svg │ │ │ ├── bm.svg │ │ │ ├── bn.svg │ │ │ ├── bo.svg │ │ │ ├── bq.svg │ │ │ ├── br.svg │ │ │ ├── bs.svg │ │ │ ├── bt.svg │ │ │ ├── bv.svg │ │ │ ├── bw.svg │ │ │ ├── by.svg │ │ │ ├── bz.svg │ │ │ ├── ca.svg │ │ │ ├── cc.svg │ │ │ ├── cd.svg │ │ │ ├── cf.svg │ │ │ ├── cg.svg │ │ │ ├── ch.svg │ │ │ ├── ci.svg │ │ │ ├── ck.svg │ │ │ ├── cl.svg │ │ │ ├── cm.svg │ │ │ ├── cn.svg │ │ │ ├── co.svg │ │ │ ├── cr.svg │ │ │ ├── cu.svg │ │ │ ├── cv.svg │ │ │ ├── cw.svg │ │ │ ├── cx.svg │ │ │ ├── cy.svg │ │ │ ├── cz.svg │ │ │ ├── de.svg │ │ │ ├── dj.svg │ │ │ ├── dk.svg │ │ │ ├── dm.svg │ │ │ ├── do.svg │ │ │ ├── dz.svg │ │ │ ├── ec.svg │ │ │ ├── ee.svg │ │ │ ├── eg.svg │ │ │ ├── eh.svg │ │ │ ├── er.svg │ │ │ ├── es-ca.svg │ │ │ ├── es-ga.svg │ │ │ ├── es.svg │ │ │ ├── et.svg │ │ │ ├── eu.svg │ │ │ ├── fi.svg │ │ │ ├── fj.svg │ │ │ ├── fk.svg │ │ │ ├── fm.svg │ │ │ ├── fo.svg │ │ │ ├── fr.svg │ │ │ ├── ga.svg │ │ │ ├── gb-eng.svg │ │ │ ├── gb-nir.svg │ │ │ ├── gb-sct.svg │ │ │ ├── gb-wls.svg │ │ │ ├── gb.svg │ │ │ ├── gd.svg │ │ │ ├── ge.svg │ │ │ ├── gf.svg │ │ │ ├── gg.svg │ │ │ ├── gh.svg │ │ │ ├── gi.svg │ │ │ ├── gl.svg │ │ │ ├── gm.svg │ │ │ ├── gn.svg │ │ │ ├── gp.svg │ │ │ ├── gq.svg │ │ │ ├── gr.svg │ │ │ ├── gs.svg │ │ │ ├── gt.svg │ │ │ ├── gu.svg │ │ │ ├── gw.svg │ │ │ ├── gy.svg │ │ │ ├── hk.svg │ │ │ ├── hm.svg │ │ │ ├── hn.svg │ │ │ ├── hr.svg │ │ │ ├── ht.svg │ │ │ ├── hu.svg │ │ │ ├── id.svg │ │ │ ├── ie.svg │ │ │ ├── il.svg │ │ │ ├── im.svg │ │ │ ├── in.svg │ │ │ ├── io.svg │ │ │ ├── iq.svg │ │ │ ├── ir.svg │ │ │ ├── is.svg │ │ │ ├── it.svg │ │ │ ├── je.svg │ │ │ ├── jm.svg │ │ │ ├── jo.svg │ │ │ ├── jp.svg │ │ │ ├── ke.svg │ │ │ ├── kg.svg │ │ │ ├── kh.svg │ │ │ ├── ki.svg │ │ │ ├── km.svg │ │ │ ├── kn.svg │ │ │ ├── kp.svg │ │ │ ├── kr.svg │ │ │ ├── kw.svg │ │ │ ├── ky.svg │ │ │ ├── kz.svg │ │ │ ├── la.svg │ │ │ ├── lb.svg │ │ │ ├── lc.svg │ │ │ ├── li.svg │ │ │ ├── lk.svg │ │ │ ├── lr.svg │ │ │ ├── ls.svg │ │ │ ├── lt.svg │ │ │ ├── lu.svg │ │ │ ├── lv.svg │ │ │ ├── ly.svg │ │ │ ├── ma.svg │ │ │ ├── mc.svg │ │ │ ├── md.svg │ │ │ ├── me.svg │ │ │ ├── mf.svg │ │ │ ├── mg.svg │ │ │ ├── mh.svg │ │ │ ├── mk.svg │ │ │ ├── ml.svg │ │ │ ├── mm.svg │ │ │ ├── mn.svg │ │ │ ├── mo.svg │ │ │ ├── mp.svg │ │ │ ├── mq.svg │ │ │ ├── mr.svg │ │ │ ├── ms.svg │ │ │ ├── mt.svg │ │ │ ├── mu.svg │ │ │ ├── mv.svg │ │ │ ├── mw.svg │ │ │ ├── mx.svg │ │ │ ├── my.svg │ │ │ ├── mz.svg │ │ │ ├── na.svg │ │ │ ├── nc.svg │ │ │ ├── ne.svg │ │ │ ├── nf.svg │ │ │ ├── ng.svg │ │ │ ├── ni.svg │ │ │ ├── nl.svg │ │ │ ├── no.svg │ │ │ ├── np.svg │ │ │ ├── nr.svg │ │ │ ├── nu.svg │ │ │ ├── nz.svg │ │ │ ├── om.svg │ │ │ ├── pa.svg │ │ │ ├── pe.svg │ │ │ ├── pf.svg │ │ │ ├── pg.svg │ │ │ ├── ph.svg │ │ │ ├── pk.svg │ │ │ ├── pl.svg │ │ │ ├── pm.svg │ │ │ ├── pn.svg │ │ │ ├── pr.svg │ │ │ ├── ps.svg │ │ │ ├── pt.svg │ │ │ ├── pw.svg │ │ │ ├── py.svg │ │ │ ├── qa.svg │ │ │ ├── re.svg │ │ │ ├── ro.svg │ │ │ ├── rs.svg │ │ │ ├── ru.svg │ │ │ ├── rw.svg │ │ │ ├── sa.svg │ │ │ ├── sb.svg │ │ │ ├── sc.svg │ │ │ ├── sd.svg │ │ │ ├── se.svg │ │ │ ├── sg.svg │ │ │ ├── sh.svg │ │ │ ├── si.svg │ │ │ ├── sj.svg │ │ │ ├── sk.svg │ │ │ ├── sl.svg │ │ │ ├── sm.svg │ │ │ ├── sn.svg │ │ │ ├── so.svg │ │ │ ├── sr.svg │ │ │ ├── ss.svg │ │ │ ├── st.svg │ │ │ ├── sv.svg │ │ │ ├── sx.svg │ │ │ ├── sy.svg │ │ │ ├── sz.svg │ │ │ ├── tc.svg │ │ │ ├── td.svg │ │ │ ├── tf.svg │ │ │ ├── tg.svg │ │ │ ├── th.svg │ │ │ ├── tj.svg │ │ │ ├── tk.svg │ │ │ ├── tl.svg │ │ │ ├── tm.svg │ │ │ ├── tn.svg │ │ │ ├── to.svg │ │ │ ├── tr.svg │ │ │ ├── tt.svg │ │ │ ├── tv.svg │ │ │ ├── tw.svg │ │ │ ├── tz.svg │ │ │ ├── ua.svg │ │ │ ├── ug.svg │ │ │ ├── um.svg │ │ │ ├── un.svg │ │ │ ├── us.svg │ │ │ ├── uy.svg │ │ │ ├── uz.svg │ │ │ ├── va.svg │ │ │ ├── vc.svg │ │ │ ├── ve.svg │ │ │ ├── vg.svg │ │ │ ├── vi.svg │ │ │ ├── vn.svg │ │ │ ├── vu.svg │ │ │ ├── wf.svg │ │ │ ├── ws.svg │ │ │ ├── xk.svg │ │ │ ├── ye.svg │ │ │ ├── yt.svg │ │ │ ├── za.svg │ │ │ ├── zm.svg │ │ │ └── zw.svg │ │ ├── flatpickr │ │ ├── flatpickr.min.css │ │ └── flatpickr.min.js │ │ ├── font-awesome │ │ ├── css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── fullcalendar │ │ ├── main.min.css │ │ └── main.min.js │ │ ├── inputmask │ │ └── jquery.inputmask.min.js │ │ ├── jquery-mousewheel │ │ └── jquery.mousewheel.js │ │ ├── jquery-sparkline │ │ └── jquery.sparkline.min.js │ │ ├── jquery-steps │ │ ├── jquery.steps.css │ │ └── jquery.steps.min.js │ │ ├── jquery-tags-input │ │ ├── jquery.tagsinput.min.css │ │ └── jquery.tagsinput.min.js │ │ ├── jquery-validation │ │ └── jquery.validate.min.js │ │ ├── jquery.flot │ │ ├── jquery.flot.categories.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.pie.js │ │ └── jquery.flot.resize.js │ │ ├── mdi │ │ ├── css │ │ │ └── materialdesignicons.min.css │ │ └── fonts │ │ │ ├── materialdesignicons-webfont.eot │ │ │ ├── materialdesignicons-webfont.ttf │ │ │ ├── materialdesignicons-webfont.woff │ │ │ └── materialdesignicons-webfont.woff2 │ │ ├── moment │ │ └── moment.min.js │ │ ├── morris.js │ │ ├── morris.css │ │ └── morris.min.js │ │ ├── owl.carousel │ │ ├── owl.carousel.min.css │ │ ├── owl.carousel.min.js │ │ └── owl.theme.default.min.css │ │ ├── peity │ │ └── jquery.peity.min.js │ │ ├── pickr │ │ ├── pickr.min.js │ │ └── themes │ │ │ ├── classic.min.css │ │ │ ├── monolith.min.css │ │ │ └── nano.min.css │ │ ├── prismjs │ │ ├── plugins │ │ │ └── prism-normalize-whitespace.min.js │ │ ├── prism.js │ │ └── themes │ │ │ ├── prism-coy.css │ │ │ ├── prism-coy.min.css │ │ │ ├── prism-dark.css │ │ │ ├── prism-dark.min.css │ │ │ ├── prism-funky.css │ │ │ ├── prism-funky.min.css │ │ │ ├── prism-okaidia.css │ │ │ ├── prism-okaidia.min.css │ │ │ ├── prism-solarizedlight.css │ │ │ ├── prism-solarizedlight.min.css │ │ │ ├── prism-tomorrow.css │ │ │ ├── prism-tomorrow.min.css │ │ │ ├── prism-twilight.css │ │ │ ├── prism-twilight.min.css │ │ │ ├── prism.css │ │ │ └── prism.min.css │ │ ├── raphael │ │ └── raphael.min.js │ │ ├── select2 │ │ ├── select2.min.css │ │ └── select2.min.js │ │ ├── sortablejs │ │ └── Sortable.min.js │ │ ├── sweetalert2 │ │ ├── sweetalert2.min.css │ │ └── sweetalert2.min.js │ │ ├── tinymce │ │ ├── bower.json │ │ ├── composer.json │ │ ├── icons │ │ │ └── default │ │ │ │ ├── icons.js │ │ │ │ ├── icons.min.js │ │ │ │ └── index.js │ │ ├── license.txt │ │ ├── models │ │ │ └── dom │ │ │ │ ├── index.js │ │ │ │ ├── model.js │ │ │ │ └── model.min.js │ │ ├── package.json │ │ ├── plugins │ │ │ ├── advlist │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── anchor │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autolink │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autoresize │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autosave │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── charmap │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── code │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── codesample │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── directionality │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── emoticons │ │ │ │ ├── index.js │ │ │ │ ├── js │ │ │ │ │ ├── emojiimages.js │ │ │ │ │ ├── emojiimages.min.js │ │ │ │ │ ├── emojis.js │ │ │ │ │ └── emojis.min.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── fullscreen │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── help │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── image │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── importcss │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── insertdatetime │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── link │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── lists │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── media │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── nonbreaking │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── pagebreak │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── preview │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── quickbars │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── save │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── searchreplace │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── table │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── template │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── visualblocks │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── visualchars │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ └── wordcount │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ ├── readme.md │ │ ├── skins │ │ │ ├── content │ │ │ │ ├── dark │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.min.css │ │ │ │ ├── default │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.min.css │ │ │ │ ├── document │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.min.css │ │ │ │ ├── tinymce-5-dark │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.min.css │ │ │ │ ├── tinymce-5 │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.min.css │ │ │ │ └── writer │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.min.css │ │ │ └── ui │ │ │ │ ├── oxide-dark │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── skin.css │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.shadowdom.css │ │ │ │ └── skin.shadowdom.min.css │ │ │ │ ├── oxide │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── skin.css │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.shadowdom.css │ │ │ │ └── skin.shadowdom.min.css │ │ │ │ ├── tinymce-5-dark │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── skin.css │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.shadowdom.css │ │ │ │ └── skin.shadowdom.min.css │ │ │ │ └── tinymce-5 │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── skin.css │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.shadowdom.css │ │ │ │ └── skin.shadowdom.min.css │ │ ├── themes │ │ │ └── silver │ │ │ │ ├── index.js │ │ │ │ ├── theme.js │ │ │ │ └── theme.min.js │ │ ├── tinymce.d.ts │ │ ├── tinymce.js │ │ └── tinymce.min.js │ │ └── typeahead.js │ │ └── typeahead.bundle.min.js ├── favicon.ico ├── frontend │ └── assets │ │ ├── css │ │ ├── animate.css │ │ ├── bootstrap.css │ │ ├── color.css │ │ ├── color │ │ │ ├── crimson.css │ │ │ ├── green.css │ │ │ ├── orange.css │ │ │ ├── pink.css │ │ │ ├── theme-color.css │ │ │ └── violet.css │ │ ├── flaticon.css │ │ ├── font-awesome-all.css │ │ ├── jquery-ui.css │ │ ├── jquery.fancybox.min.css │ │ ├── nice-select.css │ │ ├── owl.css │ │ ├── responsive.css │ │ ├── rtl.css │ │ ├── style.css │ │ ├── switcher-style.css │ │ └── timePicker.css │ │ ├── fonts │ │ ├── _flaticon.scss │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-light-300.woff │ │ ├── fa-light-300.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.woff │ │ ├── fa-solid-900.woff2 │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ │ ├── images │ │ ├── agents │ │ │ ├── agent-details-1.jpg │ │ │ ├── agents-1.jpg │ │ │ ├── agents-1.png │ │ │ ├── agents-2.jpg │ │ │ ├── agents-2.png │ │ │ ├── agents-3.jpg │ │ │ ├── agents-3.png │ │ │ ├── agents-4.jpg │ │ │ ├── agents-4.png │ │ │ ├── agents-5.jpg │ │ │ ├── agents-5.png │ │ │ ├── agents-6.jpg │ │ │ └── agents-6.png │ │ ├── background │ │ │ ├── cta-1.jpg │ │ │ ├── page-title-2.jpg │ │ │ ├── page-title-3.jpg │ │ │ ├── page-title-4.jpg │ │ │ ├── page-title-5.jpg │ │ │ ├── page-title.jpg │ │ │ ├── testimonial-1.jpg │ │ │ └── video-1.jpg │ │ ├── banner │ │ │ ├── banner-1.jpg │ │ │ ├── banner-2.jpg │ │ │ ├── banner-3.jpg │ │ │ ├── banner-4.jpg │ │ │ ├── banner-image-1.png │ │ │ └── banner-image-2.png │ │ ├── clients │ │ │ ├── clients-1.png │ │ │ ├── clients-2.png │ │ │ ├── clients-3.png │ │ │ ├── clients-4.png │ │ │ └── clients-5.png │ │ ├── favicon.ico │ │ ├── feature │ │ │ ├── author-1.jpg │ │ │ ├── author-2.jpg │ │ │ ├── author-3.jpg │ │ │ ├── author-4.jpg │ │ │ ├── author-5.jpg │ │ │ ├── author-6.jpg │ │ │ ├── author-7.jpg │ │ │ ├── author-8.jpg │ │ │ ├── feature-1.jpg │ │ │ ├── feature-2.jpg │ │ │ ├── feature-3.jpg │ │ │ ├── feature-4.jpg │ │ │ ├── feature-5.jpg │ │ │ ├── feature-6.jpg │ │ │ ├── feature-7.jpg │ │ │ └── feature-8.jpg │ │ ├── footer-logo.png │ │ ├── gallery │ │ │ ├── gallery-1.jpg │ │ │ ├── gallery-10.jpg │ │ │ ├── gallery-11.jpg │ │ │ ├── gallery-12.jpg │ │ │ ├── gallery-13.jpg │ │ │ ├── gallery-14.jpg │ │ │ ├── gallery-15.jpg │ │ │ ├── gallery-2.jpg │ │ │ ├── gallery-3.jpg │ │ │ ├── gallery-4.jpg │ │ │ ├── gallery-5.jpg │ │ │ ├── gallery-6.jpg │ │ │ ├── gallery-7.jpg │ │ │ ├── gallery-8.jpg │ │ │ └── gallery-9.jpg │ │ ├── icons │ │ │ ├── cross-out.png │ │ │ ├── map-marker-2.png │ │ │ ├── map-marker.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ └── ui-icons_888888_256x240.png │ │ ├── logo-2.png │ │ ├── logo-light.png │ │ ├── logo.png │ │ ├── news │ │ │ ├── author-1.jpg │ │ │ ├── author-2.jpg │ │ │ ├── author-3.jpg │ │ │ ├── comment-1.jpg │ │ │ ├── comment-2.jpg │ │ │ ├── comment-3.jpg │ │ │ ├── news-1.jpg │ │ │ ├── news-10.jpg │ │ │ ├── news-11.jpg │ │ │ ├── news-12.jpg │ │ │ ├── news-13.jpg │ │ │ ├── news-14.jpg │ │ │ ├── news-15.jpg │ │ │ ├── news-16.jpg │ │ │ ├── news-17.jpg │ │ │ ├── news-18.jpg │ │ │ ├── news-19.jpg │ │ │ ├── news-2.jpg │ │ │ ├── news-20.jpg │ │ │ ├── news-21.jpg │ │ │ ├── news-22.jpg │ │ │ ├── news-23.jpg │ │ │ ├── news-24.jpg │ │ │ ├── news-25.jpg │ │ │ ├── news-3.jpg │ │ │ ├── news-4.jpg │ │ │ ├── news-5.jpg │ │ │ ├── news-6.jpg │ │ │ ├── news-7.jpg │ │ │ ├── news-8.jpg │ │ │ ├── news-9.jpg │ │ │ ├── post-1.jpg │ │ │ ├── post-2.jpg │ │ │ └── post-3.jpg │ │ ├── resource │ │ │ ├── about-1.jpg │ │ │ ├── agency-1.jpg │ │ │ ├── agency-1.png │ │ │ ├── agency-2.jpg │ │ │ ├── agency-2.png │ │ │ ├── agency-3.jpg │ │ │ ├── agency-3.png │ │ │ ├── agency-4.jpg │ │ │ ├── agency-4.png │ │ │ ├── agency-5.jpg │ │ │ ├── agency-5.png │ │ │ ├── agency-6.jpg │ │ │ ├── agency-6.png │ │ │ ├── agency-details-1.jpg │ │ │ ├── author-1.jpg │ │ │ ├── contact-1.jpg │ │ │ ├── deals-1.jpg │ │ │ ├── deals-2.jpg │ │ │ ├── deals-3.jpg │ │ │ ├── deals-4.jpg │ │ │ ├── deals-5.jpg │ │ │ ├── deals-6.jpg │ │ │ ├── deals-7.jpg │ │ │ ├── download-1.png │ │ │ ├── download-2.png │ │ │ ├── floor-1.png │ │ │ ├── footer-post-1.jpg │ │ │ ├── footer-post-2.jpg │ │ │ ├── place-1.jpg │ │ │ ├── place-2.jpg │ │ │ ├── place-3.jpg │ │ │ ├── place-4.jpg │ │ │ ├── place-5.jpg │ │ │ ├── place-6.jpg │ │ │ ├── property-details-1.jpg │ │ │ ├── property-details-2.jpg │ │ │ ├── property-details-3.jpg │ │ │ ├── property-details-4.jpg │ │ │ ├── property-details-5.jpg │ │ │ ├── property-details-6.jpg │ │ │ ├── single-thumb-1.jpg │ │ │ ├── single-thumb-2.jpg │ │ │ ├── single-thumb-3.jpg │ │ │ ├── single-thumb-4.jpg │ │ │ ├── single-thumb-5.jpg │ │ │ ├── statistics-1.png │ │ │ ├── table-img-1.jpg │ │ │ ├── table-img-2.jpg │ │ │ ├── table-img-3.jpg │ │ │ ├── testimonial-1.jpg │ │ │ └── testimonial-2.jpg │ │ ├── shape │ │ │ ├── shape-1.png │ │ │ ├── shape-10.png │ │ │ ├── shape-2.png │ │ │ ├── shape-3.png │ │ │ ├── shape-4.png │ │ │ ├── shape-5.png │ │ │ ├── shape-6.png │ │ │ ├── shape-7.png │ │ │ ├── shape-8.png │ │ │ └── shape-9.png │ │ └── team │ │ │ ├── team-1.jpg │ │ │ ├── team-2.jpg │ │ │ ├── team-3.jpg │ │ │ ├── team-4.jpg │ │ │ ├── team-5.jpg │ │ │ ├── team-6.jpg │ │ │ ├── team-7.jpg │ │ │ └── team-8.jpg │ │ └── js │ │ ├── appear.js │ │ ├── bootstrap.min.js │ │ ├── bxslider.js │ │ ├── gmaps.js │ │ ├── isotope.js │ │ ├── jQuery.style.switcher.min.js │ │ ├── jquery-ui.js │ │ ├── jquery.fancybox.js │ │ ├── jquery.js │ │ ├── jquery.nice-select.min.js │ │ ├── jquery.paroller.min.js │ │ ├── map-helper.js │ │ ├── mortgage-calculator.js │ │ ├── nav-tool.js │ │ ├── owl.js │ │ ├── pagenav.js │ │ ├── popper.min.js │ │ ├── product-filter.js │ │ ├── script.js │ │ ├── scrollbar.js │ │ ├── tilt.jquery.js │ │ ├── timePicker.js │ │ ├── validation.js │ │ └── wow.js ├── index.php ├── robots.txt └── upload │ ├── admin_images │ ├── 2023030321010bfc3c5b20c439c4972383592e1c26bc.jpg │ └── 202303032118121859823-male-avatar-icon-or-portrait-handsome-young-man-face-with-beard-vector-illustration-.jpg │ ├── agent_images │ ├── 2023032318501600w-eaGl0uXNSMo.webp │ ├── 2023032318511600w-z2je8yhKAGE.webp │ ├── 202303231853demolitions_art.webp │ ├── 202303231853optimized_large_thumb_stage (1).jpg │ └── 202303231854optimized_large_thumb_stage.jpg │ ├── ariyan.jpg │ ├── login.png │ ├── logo │ └── 1762279960991023.png │ ├── no_image.jpg │ ├── post │ ├── 1761919838112788.jpg │ ├── 1761919879490890.jpg │ ├── 1761921390551410.jpg │ ├── 1761921479601558.png │ └── 1761921548656186.jpg │ ├── property │ ├── multi-image │ │ ├── 1759921935310599.jpg │ │ ├── 1759921935655001.jpg │ │ ├── 1759921936055746.jpg │ │ ├── 1760095294499145.jpg │ │ ├── 1760095294981001.jpg │ │ ├── 1760095295342982.jpg │ │ ├── 1760095448019250.jpg │ │ ├── 1760095448334959.jpg │ │ ├── 1760095448663297.jpg │ │ ├── 1760555188463432.jpg │ │ ├── 1760555188964524.jpg │ │ ├── 1760558757305542.jpg │ │ ├── 1760558757649079.jpg │ │ ├── 1760558813840134.jpg │ │ ├── 1760558814181839.jpg │ │ ├── 1760558862014343.jpg │ │ ├── 1760558862338655.jpg │ │ ├── 1761460107659921.jpg │ │ ├── 1761460107937818.jpg │ │ └── 1761460108171058.jpg │ └── thambnail │ │ ├── 1759921934962986.jpg │ │ ├── 1760095293060302.jpg │ │ ├── 1760095447725882.jpg │ │ ├── 1760555188049004.jpg │ │ ├── 1760558757021590.jpg │ │ ├── 1760558861632765.jpg │ │ ├── 1760819223949964.jpg │ │ └── 1761460107449651.jpg │ ├── state │ ├── 1761375989673341.jpg │ ├── 1761376045586454.jpg │ ├── 1761376071621777.jpg │ ├── 1761376087577978.jpg │ ├── 1761376113087755.jpg │ ├── 1761376130777904.jpg │ ├── 1761457780984103.png │ └── 1761457797396258.jpg │ ├── testimonial │ ├── 1761559289651323.jpg │ ├── 1761559322944529.jpg │ └── 1761560397715711.jpg │ └── user_images │ └── 2023030519250bfc3c5b20c439c4972383592e1c26bc.jpg ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ ├── bootstrap.js │ └── components │ │ ├── ChatMessage.vue │ │ └── SendMessage.vue └── views │ ├── admin │ ├── admin_change_password.blade.php │ ├── admin_dashboard.blade.php │ ├── admin_login.blade.php │ ├── admin_profile_view.blade.php │ ├── body │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ └── sidebar.blade.php │ └── index.blade.php │ ├── agent │ ├── agent_change_password.blade.php │ ├── agent_dashboard.blade.php │ ├── agent_login.blade.php │ ├── agent_profile_view.blade.php │ ├── body │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ └── sidebar.blade.php │ ├── index.blade.php │ ├── message │ │ ├── all_message.blade.php │ │ ├── live_chat.blade.php │ │ └── message_details.blade.php │ ├── package │ │ ├── business_plan.blade.php │ │ ├── buy_package.blade.php │ │ ├── package_history.blade.php │ │ ├── package_history_invoice.blade.php │ │ └── professional_plan.blade.php │ ├── property │ │ ├── add_property.blade.php │ │ ├── all_property.blade.php │ │ ├── details_property.blade.php │ │ └── edit_property.blade.php │ └── schedule │ │ ├── schedule_details.blade.php │ │ └── schedule_request.blade.php │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ └── verify-email.blade.php │ ├── backend │ ├── agentuser │ │ ├── add_agent.blade.php │ │ ├── all_agent.blade.php │ │ └── edit_agent.blade.php │ ├── amenities │ │ ├── add_amenities.blade.php │ │ ├── all_amenities.blade.php │ │ └── edit_amenities.blade.php │ ├── category │ │ └── blog_category.blade.php │ ├── comment │ │ ├── comment_all.blade.php │ │ └── reply_comment.blade.php │ ├── message │ │ └── all_message.blade.php │ ├── package │ │ ├── package_history.blade.php │ │ └── package_history_invoice.blade.php │ ├── pages │ │ ├── admin │ │ │ ├── add_admin.blade.php │ │ │ ├── all_admin.blade.php │ │ │ └── edit_admin.blade.php │ │ ├── permission │ │ │ ├── add_permission.blade.php │ │ │ ├── all_permission.blade.php │ │ │ ├── edit_permission.blade.php │ │ │ └── import_permission.blade.php │ │ ├── roles │ │ │ ├── add_roles.blade.php │ │ │ ├── all_roles.blade.php │ │ │ └── edit_roles.blade.php │ │ └── rolesetup │ │ │ ├── add_roles_permission.blade.php │ │ │ ├── all_roles_permission.blade.php │ │ │ └── edit_roles_permission.blade.php │ ├── post │ │ ├── add_post.blade.php │ │ ├── all_post.blade.php │ │ └── edit_post.blade.php │ ├── property │ │ ├── add_property.blade.php │ │ ├── all_property.blade.php │ │ ├── details_property.blade.php │ │ └── edit_property.blade.php │ ├── setting │ │ ├── site_update.blade.php │ │ └── smpt_update.blade.php │ ├── state │ │ ├── add_state.blade.php │ │ ├── all_state.blade.php │ │ └── edit_state.blade.php │ ├── testimonial │ │ ├── add_testimonial.blade.php │ │ ├── all_testimonial.blade.php │ │ └── edit_testimonial.blade.php │ └── type │ │ ├── add_type.blade.php │ │ ├── all_type.blade.php │ │ └── edit_type.blade.php │ ├── components │ ├── application-logo.blade.php │ ├── auth-session-status.blade.php │ ├── danger-button.blade.php │ ├── dropdown-link.blade.php │ ├── dropdown.blade.php │ ├── input-error.blade.php │ ├── input-label.blade.php │ ├── modal.blade.php │ ├── nav-link.blade.php │ ├── primary-button.blade.php │ ├── responsive-nav-link.blade.php │ ├── secondary-button.blade.php │ └── text-input.blade.php │ ├── dashboard.blade.php │ ├── errors │ ├── 403.blade.php │ └── 404.blade.php │ ├── frontend │ ├── agent │ │ └── agent_details.blade.php │ ├── blog │ │ ├── blog_cat_list.blade.php │ │ ├── blog_details.blade.php │ │ └── blog_list.blade.php │ ├── dashboard │ │ ├── change_password.blade.php │ │ ├── compare.blade.php │ │ ├── dashboard_sidebar.blade.php │ │ ├── edit_profile.blade.php │ │ ├── live_chat.blade.php │ │ └── wishlist.blade.php │ ├── frontend_dashboard.blade.php │ ├── home │ │ ├── banner.blade.php │ │ ├── category.blade.php │ │ ├── chooseus.blade.php │ │ ├── cta.blade.php │ │ ├── deals.blade.php │ │ ├── download.blade.php │ │ ├── feature.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── mobile_menu.blade.php │ │ ├── news.blade.php │ │ ├── place.blade.php │ │ ├── preload.blade.php │ │ ├── team.blade.php │ │ ├── testimonial.blade.php │ │ └── video.blade.php │ ├── index.blade.php │ ├── message │ │ └── schedule_request.blade.php │ └── property │ │ ├── buy_property.blade.php │ │ ├── property_details.blade.php │ │ ├── property_search.blade.php │ │ ├── property_type.blade.php │ │ ├── rent_property.blade.php │ │ └── state_property.blade.php │ ├── layouts │ ├── app.blade.php │ ├── guest.blade.php │ └── navigation.blade.php │ ├── mail │ └── schedule_mail.blade.php │ ├── profile │ ├── edit.blade.php │ └── partials │ │ ├── delete-user-form.blade.php │ │ ├── update-password-form.blade.php │ │ └── update-profile-information-form.blade.php │ ├── vendor │ └── pagination │ │ ├── bootstrap-4.blade.php │ │ ├── bootstrap-5.blade.php │ │ ├── custom.blade.php │ │ ├── default.blade.php │ │ ├── semantic-ui.blade.php │ │ ├── simple-bootstrap-4.blade.php │ │ ├── simple-bootstrap-5.blade.php │ │ ├── simple-default.blade.php │ │ ├── simple-tailwind.blade.php │ │ └── tailwind.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── auth.php ├── channels.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ ├── PasswordUpdateTest.php │ │ └── RegistrationTest.php │ ├── ExampleTest.php │ └── ProfileTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | indent_size = 4 7 | indent_style = space 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | 17 | [docker-compose.yml] 18 | indent_size = 4 19 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | 3 | *.blade.php diff=html 4 | *.css diff=css 5 | *.html diff=html 6 | *.md diff=markdown 7 | *.php diff=php 8 | 9 | /.github export-ignore 10 | CHANGELOG.md export-ignore 11 | .styleci.yml export-ignore 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.phpunit.cache 2 | /node_modules 3 | /public/build 4 | /public/hot 5 | /public/storage 6 | /storage/*.key 7 | /vendor 8 | .env 9 | .env.backup 10 | .env.production 11 | .phpunit.result.cache 12 | Homestead.json 13 | Homestead.yaml 14 | auth.json 15 | npm-debug.log 16 | yarn-error.log 17 | /.fleet 18 | /.idea 19 | /.vscode 20 | -------------------------------------------------------------------------------- /app/Models/Amenities.php: -------------------------------------------------------------------------------- 1 | belongsTo(User::class,'user_id','id'); 15 | } 16 | 17 | 18 | } 19 | -------------------------------------------------------------------------------- /app/Models/PropertyType.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/cz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/es-ca.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/mu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/nl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/se.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/sj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/sr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/tt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/1x1/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/cz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/ee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/es-ca.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/mu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/nl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/se.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/sj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/sl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/sr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/tt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/flag-icon-css/flags/4x3/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/vendors/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/backend/assets/vendors/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/backend/assets/vendors/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/backend/assets/vendors/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/backend/assets/vendors/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/backend/assets/vendors/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/backend/assets/vendors/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/backend/assets/vendors/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/backend/assets/vendors/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/backend/assets/vendors/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/backend/assets/vendors/mdi/fonts/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/backend/assets/vendors/mdi/fonts/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /public/backend/assets/vendors/mdi/fonts/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/backend/assets/vendors/mdi/fonts/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /public/backend/assets/vendors/mdi/fonts/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/backend/assets/vendors/mdi/fonts/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /public/backend/assets/vendors/mdi/fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/backend/assets/vendors/mdi/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/icons/default/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "default" icons for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/icons/default') 5 | // ES2015: 6 | // import 'tinymce/icons/default' 7 | require('./icons.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/models/dom/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "dom" model for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/models/dom') 5 | // ES2015: 6 | // import 'tinymce/models/dom' 7 | require('./model.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/advlist/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "advlist" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/advlist') 5 | // ES2015: 6 | // import 'tinymce/plugins/advlist' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/anchor/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "anchor" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/anchor') 5 | // ES2015: 6 | // import 'tinymce/plugins/anchor' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/autolink/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "autolink" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/autolink') 5 | // ES2015: 6 | // import 'tinymce/plugins/autolink' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/autoresize/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "autoresize" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/autoresize') 5 | // ES2015: 6 | // import 'tinymce/plugins/autoresize' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/autosave/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "autosave" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/autosave') 5 | // ES2015: 6 | // import 'tinymce/plugins/autosave' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/charmap/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "charmap" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/charmap') 5 | // ES2015: 6 | // import 'tinymce/plugins/charmap' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/code/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "code" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/code') 5 | // ES2015: 6 | // import 'tinymce/plugins/code' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/codesample/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "codesample" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/codesample') 5 | // ES2015: 6 | // import 'tinymce/plugins/codesample' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/directionality/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "directionality" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/directionality') 5 | // ES2015: 6 | // import 'tinymce/plugins/directionality' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/emoticons/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "emoticons" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/emoticons') 5 | // ES2015: 6 | // import 'tinymce/plugins/emoticons' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/fullscreen/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "fullscreen" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/fullscreen') 5 | // ES2015: 6 | // import 'tinymce/plugins/fullscreen' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/help/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "help" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/help') 5 | // ES2015: 6 | // import 'tinymce/plugins/help' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/image/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "image" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/image') 5 | // ES2015: 6 | // import 'tinymce/plugins/image' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/importcss/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "importcss" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/importcss') 5 | // ES2015: 6 | // import 'tinymce/plugins/importcss' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/insertdatetime/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "insertdatetime" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/insertdatetime') 5 | // ES2015: 6 | // import 'tinymce/plugins/insertdatetime' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/link/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "link" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/link') 5 | // ES2015: 6 | // import 'tinymce/plugins/link' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/lists/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "lists" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/lists') 5 | // ES2015: 6 | // import 'tinymce/plugins/lists' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/media/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "media" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/media') 5 | // ES2015: 6 | // import 'tinymce/plugins/media' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/nonbreaking/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "nonbreaking" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/nonbreaking') 5 | // ES2015: 6 | // import 'tinymce/plugins/nonbreaking' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/pagebreak/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "pagebreak" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/pagebreak') 5 | // ES2015: 6 | // import 'tinymce/plugins/pagebreak' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/preview/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "preview" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/preview') 5 | // ES2015: 6 | // import 'tinymce/plugins/preview' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/quickbars/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "quickbars" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/quickbars') 5 | // ES2015: 6 | // import 'tinymce/plugins/quickbars' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/save/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "save" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/save') 5 | // ES2015: 6 | // import 'tinymce/plugins/save' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/searchreplace/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "searchreplace" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/searchreplace') 5 | // ES2015: 6 | // import 'tinymce/plugins/searchreplace' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/table/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "table" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/table') 5 | // ES2015: 6 | // import 'tinymce/plugins/table' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/template/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "template" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/template') 5 | // ES2015: 6 | // import 'tinymce/plugins/template' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/visualblocks/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "visualblocks" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/visualblocks') 5 | // ES2015: 6 | // import 'tinymce/plugins/visualblocks' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/visualchars/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "visualchars" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/visualchars') 5 | // ES2015: 6 | // import 'tinymce/plugins/visualchars' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/plugins/wordcount/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "wordcount" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/wordcount') 5 | // ES2015: 6 | // import 'tinymce/plugins/wordcount' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/backend/assets/vendors/tinymce/themes/silver/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "silver" theme for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/themes/silver') 5 | // ES2015: 6 | // import 'tinymce/themes/silver' 7 | require('./theme.js'); -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/favicon.ico -------------------------------------------------------------------------------- /public/frontend/assets/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /public/frontend/assets/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /public/frontend/assets/fonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/fonts/fa-brands-400.woff -------------------------------------------------------------------------------- /public/frontend/assets/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /public/frontend/assets/fonts/fa-light-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/fonts/fa-light-300.woff -------------------------------------------------------------------------------- /public/frontend/assets/fonts/fa-light-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/fonts/fa-light-300.woff2 -------------------------------------------------------------------------------- /public/frontend/assets/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /public/frontend/assets/fonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/fonts/fa-regular-400.woff -------------------------------------------------------------------------------- /public/frontend/assets/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /public/frontend/assets/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /public/frontend/assets/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /public/frontend/assets/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/fonts/icomoon.eot -------------------------------------------------------------------------------- /public/frontend/assets/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/fonts/icomoon.ttf -------------------------------------------------------------------------------- /public/frontend/assets/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/fonts/icomoon.woff -------------------------------------------------------------------------------- /public/frontend/assets/images/agents/agent-details-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/agents/agent-details-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/agents/agents-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/agents/agents-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/agents/agents-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/agents/agents-1.png -------------------------------------------------------------------------------- /public/frontend/assets/images/agents/agents-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/agents/agents-2.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/agents/agents-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/agents/agents-2.png -------------------------------------------------------------------------------- /public/frontend/assets/images/agents/agents-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/agents/agents-3.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/agents/agents-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/agents/agents-3.png -------------------------------------------------------------------------------- /public/frontend/assets/images/agents/agents-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/agents/agents-4.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/agents/agents-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/agents/agents-4.png -------------------------------------------------------------------------------- /public/frontend/assets/images/agents/agents-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/agents/agents-5.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/agents/agents-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/agents/agents-5.png -------------------------------------------------------------------------------- /public/frontend/assets/images/agents/agents-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/agents/agents-6.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/agents/agents-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/agents/agents-6.png -------------------------------------------------------------------------------- /public/frontend/assets/images/background/cta-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/background/cta-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/background/page-title-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/background/page-title-2.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/background/page-title-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/background/page-title-3.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/background/page-title-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/background/page-title-4.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/background/page-title-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/background/page-title-5.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/background/page-title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/background/page-title.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/background/testimonial-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/background/testimonial-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/background/video-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/background/video-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/banner/banner-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/banner/banner-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/banner/banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/banner/banner-2.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/banner/banner-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/banner/banner-3.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/banner/banner-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/banner/banner-4.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/banner/banner-image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/banner/banner-image-1.png -------------------------------------------------------------------------------- /public/frontend/assets/images/banner/banner-image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/banner/banner-image-2.png -------------------------------------------------------------------------------- /public/frontend/assets/images/clients/clients-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/clients/clients-1.png -------------------------------------------------------------------------------- /public/frontend/assets/images/clients/clients-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/clients/clients-2.png -------------------------------------------------------------------------------- /public/frontend/assets/images/clients/clients-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/clients/clients-3.png -------------------------------------------------------------------------------- /public/frontend/assets/images/clients/clients-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/clients/clients-4.png -------------------------------------------------------------------------------- /public/frontend/assets/images/clients/clients-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/clients/clients-5.png -------------------------------------------------------------------------------- /public/frontend/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/favicon.ico -------------------------------------------------------------------------------- /public/frontend/assets/images/feature/author-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/feature/author-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/feature/author-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/feature/author-2.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/feature/author-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/feature/author-3.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/feature/author-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/feature/author-4.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/feature/author-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/feature/author-5.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/feature/author-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/feature/author-6.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/feature/author-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/feature/author-7.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/feature/author-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/feature/author-8.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/feature/feature-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/feature/feature-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/feature/feature-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/feature/feature-2.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/feature/feature-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/feature/feature-3.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/feature/feature-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/feature/feature-4.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/feature/feature-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/feature/feature-5.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/feature/feature-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/feature/feature-6.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/feature/feature-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/feature/feature-7.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/feature/feature-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/feature/feature-8.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/footer-logo.png -------------------------------------------------------------------------------- /public/frontend/assets/images/gallery/gallery-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/gallery/gallery-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/gallery/gallery-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/gallery/gallery-10.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/gallery/gallery-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/gallery/gallery-11.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/gallery/gallery-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/gallery/gallery-12.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/gallery/gallery-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/gallery/gallery-13.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/gallery/gallery-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/gallery/gallery-14.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/gallery/gallery-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/gallery/gallery-15.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/gallery/gallery-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/gallery/gallery-2.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/gallery/gallery-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/gallery/gallery-3.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/gallery/gallery-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/gallery/gallery-4.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/gallery/gallery-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/gallery/gallery-5.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/gallery/gallery-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/gallery/gallery-6.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/gallery/gallery-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/gallery/gallery-7.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/gallery/gallery-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/gallery/gallery-8.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/gallery/gallery-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/gallery/gallery-9.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/icons/cross-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/icons/cross-out.png -------------------------------------------------------------------------------- /public/frontend/assets/images/icons/map-marker-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/icons/map-marker-2.png -------------------------------------------------------------------------------- /public/frontend/assets/images/icons/map-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/icons/map-marker.png -------------------------------------------------------------------------------- /public/frontend/assets/images/icons/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/icons/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /public/frontend/assets/images/icons/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/icons/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /public/frontend/assets/images/icons/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/icons/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /public/frontend/assets/images/logo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/logo-2.png -------------------------------------------------------------------------------- /public/frontend/assets/images/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/logo-light.png -------------------------------------------------------------------------------- /public/frontend/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/logo.png -------------------------------------------------------------------------------- /public/frontend/assets/images/news/author-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/author-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/author-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/author-2.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/author-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/author-3.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/comment-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/comment-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/comment-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/comment-2.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/comment-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/comment-3.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-10.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-11.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-12.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-13.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-14.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-15.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-16.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-17.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-18.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-19.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-2.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-20.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-21.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-22.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-23.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-24.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-25.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-3.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-4.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-5.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-6.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-7.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-8.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/news-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/news-9.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/post-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/post-2.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/news/post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/news/post-3.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/about-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/about-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/agency-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/agency-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/agency-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/agency-1.png -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/agency-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/agency-2.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/agency-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/agency-2.png -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/agency-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/agency-3.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/agency-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/agency-3.png -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/agency-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/agency-4.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/agency-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/agency-4.png -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/agency-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/agency-5.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/agency-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/agency-5.png -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/agency-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/agency-6.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/agency-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/agency-6.png -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/agency-details-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/agency-details-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/author-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/author-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/contact-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/contact-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/deals-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/deals-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/deals-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/deals-2.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/deals-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/deals-3.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/deals-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/deals-4.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/deals-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/deals-5.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/deals-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/deals-6.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/deals-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/deals-7.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/download-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/download-1.png -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/download-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/download-2.png -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/floor-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/floor-1.png -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/footer-post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/footer-post-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/footer-post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/footer-post-2.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/place-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/place-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/place-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/place-2.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/place-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/place-3.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/place-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/place-4.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/place-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/place-5.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/place-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/place-6.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/property-details-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/property-details-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/property-details-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/property-details-2.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/property-details-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/property-details-3.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/property-details-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/property-details-4.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/property-details-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/property-details-5.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/property-details-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/property-details-6.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/single-thumb-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/single-thumb-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/single-thumb-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/single-thumb-2.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/single-thumb-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/single-thumb-3.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/single-thumb-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/single-thumb-4.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/single-thumb-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/single-thumb-5.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/statistics-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/statistics-1.png -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/table-img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/table-img-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/table-img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/table-img-2.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/table-img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/table-img-3.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/testimonial-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/testimonial-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/resource/testimonial-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/resource/testimonial-2.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/shape/shape-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/shape/shape-1.png -------------------------------------------------------------------------------- /public/frontend/assets/images/shape/shape-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/shape/shape-10.png -------------------------------------------------------------------------------- /public/frontend/assets/images/shape/shape-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/shape/shape-2.png -------------------------------------------------------------------------------- /public/frontend/assets/images/shape/shape-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/shape/shape-3.png -------------------------------------------------------------------------------- /public/frontend/assets/images/shape/shape-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/shape/shape-4.png -------------------------------------------------------------------------------- /public/frontend/assets/images/shape/shape-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/shape/shape-5.png -------------------------------------------------------------------------------- /public/frontend/assets/images/shape/shape-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/shape/shape-6.png -------------------------------------------------------------------------------- /public/frontend/assets/images/shape/shape-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/shape/shape-7.png -------------------------------------------------------------------------------- /public/frontend/assets/images/shape/shape-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/shape/shape-8.png -------------------------------------------------------------------------------- /public/frontend/assets/images/shape/shape-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/shape/shape-9.png -------------------------------------------------------------------------------- /public/frontend/assets/images/team/team-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/team/team-1.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/team/team-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/team/team-2.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/team/team-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/team/team-3.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/team/team-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/team/team-4.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/team/team-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/team/team-5.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/team/team-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/team/team-6.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/team/team-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/team/team-7.jpg -------------------------------------------------------------------------------- /public/frontend/assets/images/team/team-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/frontend/assets/images/team/team-8.jpg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/upload/admin_images/2023030321010bfc3c5b20c439c4972383592e1c26bc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/admin_images/2023030321010bfc3c5b20c439c4972383592e1c26bc.jpg -------------------------------------------------------------------------------- /public/upload/admin_images/202303032118121859823-male-avatar-icon-or-portrait-handsome-young-man-face-with-beard-vector-illustration-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/admin_images/202303032118121859823-male-avatar-icon-or-portrait-handsome-young-man-face-with-beard-vector-illustration-.jpg -------------------------------------------------------------------------------- /public/upload/agent_images/2023032318501600w-eaGl0uXNSMo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/agent_images/2023032318501600w-eaGl0uXNSMo.webp -------------------------------------------------------------------------------- /public/upload/agent_images/2023032318511600w-z2je8yhKAGE.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/agent_images/2023032318511600w-z2je8yhKAGE.webp -------------------------------------------------------------------------------- /public/upload/agent_images/202303231853demolitions_art.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/agent_images/202303231853demolitions_art.webp -------------------------------------------------------------------------------- /public/upload/agent_images/202303231853optimized_large_thumb_stage (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/agent_images/202303231853optimized_large_thumb_stage (1).jpg -------------------------------------------------------------------------------- /public/upload/agent_images/202303231854optimized_large_thumb_stage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/agent_images/202303231854optimized_large_thumb_stage.jpg -------------------------------------------------------------------------------- /public/upload/ariyan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/ariyan.jpg -------------------------------------------------------------------------------- /public/upload/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/login.png -------------------------------------------------------------------------------- /public/upload/logo/1762279960991023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/logo/1762279960991023.png -------------------------------------------------------------------------------- /public/upload/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/no_image.jpg -------------------------------------------------------------------------------- /public/upload/post/1761919838112788.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/post/1761919838112788.jpg -------------------------------------------------------------------------------- /public/upload/post/1761919879490890.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/post/1761919879490890.jpg -------------------------------------------------------------------------------- /public/upload/post/1761921390551410.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/post/1761921390551410.jpg -------------------------------------------------------------------------------- /public/upload/post/1761921479601558.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/post/1761921479601558.png -------------------------------------------------------------------------------- /public/upload/post/1761921548656186.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/post/1761921548656186.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1759921935310599.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1759921935310599.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1759921935655001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1759921935655001.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1759921936055746.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1759921936055746.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1760095294499145.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1760095294499145.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1760095294981001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1760095294981001.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1760095295342982.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1760095295342982.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1760095448019250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1760095448019250.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1760095448334959.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1760095448334959.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1760095448663297.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1760095448663297.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1760555188463432.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1760555188463432.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1760555188964524.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1760555188964524.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1760558757305542.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1760558757305542.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1760558757649079.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1760558757649079.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1760558813840134.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1760558813840134.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1760558814181839.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1760558814181839.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1760558862014343.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1760558862014343.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1760558862338655.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1760558862338655.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1761460107659921.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1761460107659921.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1761460107937818.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1761460107937818.jpg -------------------------------------------------------------------------------- /public/upload/property/multi-image/1761460108171058.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/multi-image/1761460108171058.jpg -------------------------------------------------------------------------------- /public/upload/property/thambnail/1759921934962986.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/thambnail/1759921934962986.jpg -------------------------------------------------------------------------------- /public/upload/property/thambnail/1760095293060302.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/thambnail/1760095293060302.jpg -------------------------------------------------------------------------------- /public/upload/property/thambnail/1760095447725882.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/thambnail/1760095447725882.jpg -------------------------------------------------------------------------------- /public/upload/property/thambnail/1760555188049004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/thambnail/1760555188049004.jpg -------------------------------------------------------------------------------- /public/upload/property/thambnail/1760558757021590.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/thambnail/1760558757021590.jpg -------------------------------------------------------------------------------- /public/upload/property/thambnail/1760558861632765.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/thambnail/1760558861632765.jpg -------------------------------------------------------------------------------- /public/upload/property/thambnail/1760819223949964.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/thambnail/1760819223949964.jpg -------------------------------------------------------------------------------- /public/upload/property/thambnail/1761460107449651.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/property/thambnail/1761460107449651.jpg -------------------------------------------------------------------------------- /public/upload/state/1761375989673341.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/state/1761375989673341.jpg -------------------------------------------------------------------------------- /public/upload/state/1761376045586454.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/state/1761376045586454.jpg -------------------------------------------------------------------------------- /public/upload/state/1761376071621777.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/state/1761376071621777.jpg -------------------------------------------------------------------------------- /public/upload/state/1761376087577978.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/state/1761376087577978.jpg -------------------------------------------------------------------------------- /public/upload/state/1761376113087755.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/state/1761376113087755.jpg -------------------------------------------------------------------------------- /public/upload/state/1761376130777904.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/state/1761376130777904.jpg -------------------------------------------------------------------------------- /public/upload/state/1761457780984103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/state/1761457780984103.png -------------------------------------------------------------------------------- /public/upload/state/1761457797396258.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/state/1761457797396258.jpg -------------------------------------------------------------------------------- /public/upload/testimonial/1761559289651323.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/testimonial/1761559289651323.jpg -------------------------------------------------------------------------------- /public/upload/testimonial/1761559322944529.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/testimonial/1761559322944529.jpg -------------------------------------------------------------------------------- /public/upload/testimonial/1761560397715711.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/testimonial/1761560397715711.jpg -------------------------------------------------------------------------------- /public/upload/user_images/2023030519250bfc3c5b20c439c4972383592e1c26bc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/laravel-property-management-system/740051a33e5274922c00fafb74281d053ca17d2e/public/upload/user_images/2023030519250bfc3c5b20c439c4972383592e1c26bc.jpg -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | -------------------------------------------------------------------------------- /resources/views/components/auth-session-status.blade.php: -------------------------------------------------------------------------------- 1 | @props(['status']) 2 | 3 | @if ($status) 4 |
merge(['class' => 'font-medium text-sm text-green-600']) }}> 5 | {{ $status }} 6 |
7 | @endif 8 | -------------------------------------------------------------------------------- /resources/views/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- 1 | merge(['class' => 'block w-full px-4 py-2 text-left text-sm leading-5 text-gray-700 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 transition duration-150 ease-in-out']) }}>{{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/components/input-error.blade.php: -------------------------------------------------------------------------------- 1 | @props(['messages']) 2 | 3 | @if ($messages) 4 |
    merge(['class' => 'text-sm text-red-600 space-y-1']) }}> 5 | @foreach ((array) $messages as $message) 6 |
  • {{ $message }}
  • 7 | @endforeach 8 |
9 | @endif 10 | -------------------------------------------------------------------------------- /resources/views/components/input-label.blade.php: -------------------------------------------------------------------------------- 1 | @props(['value']) 2 | 3 | 6 | -------------------------------------------------------------------------------- /resources/views/components/text-input.blade.php: -------------------------------------------------------------------------------- 1 | @props(['disabled' => false]) 2 | 3 | merge(['class' => 'border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 rounded-md shadow-sm']) !!}> 4 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 15 | } 16 | } 17 | --------------------------------------------------------------------------------