gitextract_uwh3je2m/ ├── .gitignore ├── README.md ├── app/ │ ├── Console/ │ │ ├── Commands/ │ │ │ ├── BreedsImportCommand.php │ │ │ ├── ScriptCompressExistingImages.php │ │ │ ├── ScriptCompressExistingMediaImages.php │ │ │ ├── ScriptCompressExistingPetProImages.php │ │ │ ├── ScriptCompressExistingThumbOrImages.php │ │ │ ├── ScriptCreatePetProSmallThumbImages.php │ │ │ ├── StateShortcodeScript.php │ │ │ ├── UpdateValidCitiesFlagCommand.php │ │ │ └── addExistingPetProCategoriesCommand.php │ │ └── Kernel.php │ ├── Exceptions/ │ │ └── Handler.php │ ├── Http/ │ │ ├── Controllers/ │ │ │ ├── Admin/ │ │ │ │ ├── AdminUsersController.php │ │ │ │ ├── Auth/ │ │ │ │ │ └── LoginController.php │ │ │ │ ├── BusinessRequestsController.php │ │ │ │ ├── ContactsController.php │ │ │ │ ├── DashboardController.php │ │ │ │ ├── NewslettersController.php │ │ │ │ ├── PetProBusinessController.php │ │ │ │ ├── PetProCategoriesController.php │ │ │ │ ├── PetProDealsController.php │ │ │ │ ├── PetProEventsController.php │ │ │ │ ├── PetProGalleriesController.php │ │ │ │ ├── PetProsController.php │ │ │ │ ├── PetProsRequestController.php │ │ │ │ ├── PetTypeController.php │ │ │ │ ├── ProductReviewCategoriesController.php │ │ │ │ ├── ProductReviewController.php │ │ │ │ ├── ProductReviewDealsController.php │ │ │ │ ├── TestimonialController.php │ │ │ │ ├── UsersController.php │ │ │ │ ├── WatchAndLearnAuthorController.php │ │ │ │ ├── WatchAndLearnCategoriesController.php │ │ │ │ ├── WatchAndLearnController.php │ │ │ │ └── WatchAndLearnMediaController.php │ │ │ ├── Api/ │ │ │ │ └── V1/ │ │ │ │ ├── Auth/ │ │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ │ ├── LoginController.php │ │ │ │ │ ├── RegisterController.php │ │ │ │ │ ├── ResetPasswordController.php │ │ │ │ │ ├── SocialLoginController.php │ │ │ │ │ ├── SocialSignUpController.php │ │ │ │ │ └── VerificationController.php │ │ │ │ ├── BusinessRequestController.php │ │ │ │ ├── ContactController.php │ │ │ │ ├── HomeController.php │ │ │ │ ├── NewsletterController.php │ │ │ │ ├── PetProController.php │ │ │ │ ├── ProductReviewController.php │ │ │ │ ├── UsersController.php │ │ │ │ └── WatchAndLearnController.php │ │ │ ├── Auth/ │ │ │ │ ├── ConfirmPasswordController.php │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ ├── ResetPasswordController.php │ │ │ │ └── VerificationController.php │ │ │ ├── Controller.php │ │ │ └── HomeController.php │ │ ├── HubspotHelpers.php │ │ ├── Kernel.php │ │ ├── Middleware/ │ │ │ ├── AdminAuth.php │ │ │ ├── Authenticate.php │ │ │ ├── CheckForMaintenanceMode.php │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── SetAuthProviderUser.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustProxies.php │ │ │ ├── VerifyCsrfToken.php │ │ │ └── VerifyJWTToken.php │ │ ├── Requests/ │ │ │ ├── Admin/ │ │ │ │ ├── AdminUsersRequest.php │ │ │ │ ├── PetProBusinessRequest.php │ │ │ │ ├── PetProCategoriesRequest.php │ │ │ │ ├── PetProDealRequest.php │ │ │ │ ├── PetProEventRequest.php │ │ │ │ ├── PetProGalleryRequest.php │ │ │ │ ├── PetProRequest.php │ │ │ │ ├── PetTypeRequest.php │ │ │ │ ├── TestimonialRequest.php │ │ │ │ ├── WatchAndLearnAuthorRequest.php │ │ │ │ ├── WatchAndLearnCategoriesRequest.php │ │ │ │ ├── WatchAndLearnDealRequest.php │ │ │ │ └── WatchAndLearnRequest.php │ │ │ └── User/ │ │ │ └── UserPetProRequest.php │ │ └── WagEnabledHelpers.php │ ├── Imports/ │ │ └── BreedsImport.php │ ├── Library/ │ │ └── GoogleMapHelper.php │ ├── Mail/ │ │ ├── SendBusinessRequestMail.php │ │ ├── SendCommentNotificaitonMail.php │ │ ├── SendContactMail.php │ │ └── UerPasswordResetMail.php │ ├── Models/ │ │ ├── AdminUser.php │ │ ├── Breed.php │ │ ├── BusinessNature.php │ │ ├── BusinessRequest.php │ │ ├── City.php │ │ ├── Contact.php │ │ ├── Country.php │ │ ├── Newsletter.php │ │ ├── PasswordReset.php │ │ ├── PetPro.php │ │ ├── PetProCategory.php │ │ ├── PetProDeal.php │ │ ├── PetProDealClaim.php │ │ ├── PetProEvent.php │ │ ├── PetProGallery.php │ │ ├── PetProReview.php │ │ ├── PetProSelectedBusinessNature.php │ │ ├── PetProSelectedCategory.php │ │ ├── PetProServicesOffered.php │ │ ├── PetProTimetable.php │ │ ├── PetProsSelectedPetType.php │ │ ├── PetType.php │ │ ├── State.php │ │ ├── Testimonial.php │ │ ├── User.php │ │ ├── UserLovedPetPro.php │ │ ├── UserPet.php │ │ ├── UserSavedVideo.php │ │ ├── UsersPetBreed.php │ │ ├── WatchAndLearn.php │ │ ├── WatchAndLearnAuthor.php │ │ ├── WatchAndLearnCategory.php │ │ ├── WatchAndLearnComment.php │ │ ├── WatchAndLearnDeal.php │ │ ├── WatchAndLearnDealClaim.php │ │ ├── WatchAndLearnMedias.php │ │ └── WatchAndLearnSelectedCategory.php │ ├── Observers/ │ │ ├── PetProObserver.php │ │ ├── ProductReviewObserver.php │ │ └── WatchAndLearnObserver.php │ └── Providers/ │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── artisan ├── bootstrap/ │ ├── app.php │ └── cache/ │ └── .gitignore ├── composer.json ├── config/ │ ├── api.php │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── cors.php │ ├── database.php │ ├── filesystems.php │ ├── hashing.php │ ├── jwt.php │ ├── logging.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ ├── session.php │ ├── view.php │ └── wagenabled.php ├── database/ │ ├── .gitignore │ ├── factories/ │ │ └── UserFactory.php │ ├── migrations/ │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ │ ├── 2020_04_23_050448_create_admin_users_table.php │ │ ├── 2020_04_25_052414_create_breeds_table.php │ │ ├── 2020_04_25_063535_create_user_pets_table.php │ │ ├── 2020_04_25_083408_create_contacts_table.php │ │ ├── 2020_04_25_090404_create_business_requests_table.php │ │ ├── 2020_04_25_092709_create_newsletters_table.php │ │ ├── 2020_04_25_094050_create_watch_and_learn_categories_table.php │ │ ├── 2020_04_25_104210_create_watch_and_learn_authors_table.php │ │ ├── 2020_04_25_104211_create_watch_and_learn_table.php │ │ ├── 2020_04_27_064153_create_watch_and_learn_comments_table.php │ │ ├── 2020_04_27_070449_create_user_saved_videos_table.php │ │ ├── 2020_04_27_093324_create_countries_table.php │ │ ├── 2020_04_27_093329_create_states_table.php │ │ ├── 2020_04_27_093333_create_cities_table.php │ │ ├── 2020_04_27_093334_create_pet_pro_categories_table.php │ │ ├── 2020_04_27_093335_create_pet_pros_table.php │ │ ├── 2020_04_27_122139_create_pet_pro_timetables_table.php │ │ ├── 2020_04_28_103645_create_user_loved_pet_pros_table.php │ │ ├── 2020_04_28_103815_create_pet_pro_reviews_table.php │ │ ├── 2020_04_28_103821_create_pet_pro_galleries_table.php │ │ ├── 2020_04_28_103827_create_pet_pro_deals_table.php │ │ ├── 2020_04_28_103833_create_pet_pro_deal_claims_table.php │ │ ├── 2020_04_28_103839_create_pet_pro_events_table.php │ │ ├── 2020_05_25_094716_create_users_pet_breed_table.php │ │ ├── 2020_06_08_114705_create_watch_and_learn_medias_table.php │ │ ├── 2020_06_30_055558_add_extra_fields_to_newsletters_table.php │ │ ├── 2020_07_03_051223_add_status_to_watch_and_learn_table.php │ │ ├── 2020_07_03_062408_alter_table_watch_and_learn_change_blog_meta_description.php │ │ ├── 2020_07_11_100910_create_testimonials_table.php │ │ ├── 2020_07_13_064659_add_is_valid_column_in_cities_table.php │ │ ├── 2020_07_13_085917_create_pet_pro_selected_categories.php │ │ ├── 2020_07_17_064151_add_website_url_to_pet_pros_table.php │ │ ├── 2020_07_22_115515_add_is_cropped_image_to_pet_pro_galleries_table.php │ │ ├── 2020_07_23_052716_create_pet_pro_services_offered_table.php │ │ ├── 2020_07_30_054457_add_descriptionto_pet_pro_events_table.php │ │ ├── 2020_08_04_043353_add_event_end_date_to_pet_pro_events_table.php │ │ ├── 2020_08_05_043704_add_vet_place_name_to_users_table.php │ │ ├── 2020_08_22_042827_change_total_rated_column_type.php │ │ ├── 2020_09_14_042049_create_watch_and_learn_deals_table.php │ │ ├── 2020_09_14_042054_create_watch_and_learn_deal_claims_table.php │ │ ├── 2020_09_14_052137_add_parent_id_to_watch_and_learn_categories_table.php │ │ ├── 2020_10_01_050437_add_short_name_column_to_states_table.php │ │ ├── 2021_01_13_155451_create_pet_country_state_city_table.php │ │ ├── 2021_01_26_191038_create_business_natures_table.php │ │ ├── 2021_01_26_191322_create_pet_pro_selected_business_natures_table.php │ │ ├── 2021_02_02_074857_create_watch_and_learn_selected_categories_table.php │ │ ├── 2021_02_18_080850_add_column_user_to_table_pet_pros.php │ │ ├── 2021_03_02_065300_add_column_new_detail_to_table_pet_pros.php │ │ ├── 2021_06_01_080340_create_pet_types_table.php │ │ ├── 2021_06_01_081012_create_pet_pros_selected_pet_types_table.php │ │ ├── 2021_08_06_095431_add_column_adoption_date_in_user_pets_table.php │ │ └── 2021_08_06_095832_add_column_address_in_users_table.php │ └── seeds/ │ ├── CitiesTableSeeder.php │ ├── CountriesTableSeeder.php │ ├── DatabaseSeeder.php │ └── StatesTableSeeder.php ├── package.json ├── phpunit.xml ├── public/ │ ├── .htaccess │ ├── admin-theme/ │ │ ├── css/ │ │ │ ├── admin-style.css │ │ │ ├── classic.css │ │ │ └── grapes-builder.css │ │ ├── fonts/ │ │ │ └── stylesheet.css │ │ └── js/ │ │ ├── app.js │ │ └── settings.js │ ├── bd_data/ │ │ ├── cities.sql │ │ ├── countries.sql │ │ └── states.sql │ ├── breeds/ │ │ └── breeds.csv │ ├── css/ │ │ └── app.css │ ├── images/ │ │ └── favicons/ │ │ ├── browserconfig.xml │ │ └── manifest.json │ ├── index.php │ ├── js/ │ │ └── app.js │ ├── mix-manifest.json │ ├── plugins/ │ │ ├── bootstrap-datepicker/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap-datepicker.css │ │ │ │ ├── bootstrap-datepicker.standalone.css │ │ │ │ ├── bootstrap-datepicker3.css │ │ │ │ └── bootstrap-datepicker3.standalone.css │ │ │ └── js/ │ │ │ └── bootstrap-datepicker.js │ │ ├── croppie/ │ │ │ └── croppie.js │ │ ├── daterangepicker/ │ │ │ └── daterangepicker.css │ │ ├── font-awesome/ │ │ │ └── css/ │ │ │ └── font-awesome.css │ │ ├── iCheck/ │ │ │ └── custom.css │ │ ├── jquery-validate/ │ │ │ └── jquery.form.js │ │ ├── media/ │ │ │ ├── media.css │ │ │ └── media.js │ │ ├── new-croppie/ │ │ │ ├── cropper.css │ │ │ ├── cropper.js │ │ │ ├── main-new.js │ │ │ └── main.js │ │ └── summernote/ │ │ ├── summernote-bs3.css │ │ └── summernote.css │ ├── robots.txt │ └── vendor/ │ └── content-builder/ │ ├── assets/ │ │ ├── emailsnippets/ │ │ │ ├── content.css │ │ │ └── snippets.html │ │ ├── frameworks/ │ │ │ └── foundation-emails/ │ │ │ ├── css/ │ │ │ │ ├── app.css │ │ │ │ ├── foundation-emails.css │ │ │ │ └── foundation.css │ │ │ └── index.html │ │ ├── icons/ │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── config.json │ │ │ ├── css/ │ │ │ │ ├── animation.css │ │ │ │ ├── fontello-codes.css │ │ │ │ ├── fontello-embedded.css │ │ │ │ ├── fontello-ie7-codes.css │ │ │ │ ├── fontello-ie7.css │ │ │ │ └── fontello.css │ │ │ └── demo.html │ │ ├── ionicons/ │ │ │ ├── LICENSE │ │ │ ├── css/ │ │ │ │ └── ionicons.css │ │ │ ├── selecticon-dark.html │ │ │ └── selecticon.html │ │ ├── minimalist-basic/ │ │ │ ├── content-bootstrap.css │ │ │ ├── content-foundation.css │ │ │ ├── content-material.css │ │ │ ├── content-uikit.css │ │ │ ├── content.css │ │ │ ├── snippets-bootstrap.html │ │ │ ├── snippets-bootstrap.php │ │ │ ├── snippets-foundation.html │ │ │ ├── snippets-material.html │ │ │ ├── snippets-uikit.html │ │ │ ├── snippets.html │ │ │ └── thumbnails/ │ │ │ ├── index-C=D_O=A.html │ │ │ ├── index-C=D_O=D.html │ │ │ ├── index-C=M_O=A.html │ │ │ ├── index-C=M_O=D.html │ │ │ ├── index-C=N_O=A.html │ │ │ ├── index-C=N_O=D.html │ │ │ ├── index-C=S_O=A.html │ │ │ ├── index-C=S_O=D.html │ │ │ └── index.html │ │ ├── modules/ │ │ │ └── slider.html │ │ ├── scripts/ │ │ │ ├── simplelightbox/ │ │ │ │ ├── simple-lightbox.js │ │ │ │ └── simplelightbox.css │ │ │ └── slick/ │ │ │ ├── slick-theme.css │ │ │ ├── slick.css │ │ │ └── slick.js │ │ └── simple/ │ │ ├── content.css │ │ └── snippets.html │ ├── contentbuilder/ │ │ ├── blank.html │ │ ├── codemirror/ │ │ │ ├── LICENSE │ │ │ ├── lib/ │ │ │ │ ├── codemirror.css │ │ │ │ └── codemirror.js │ │ │ └── mode/ │ │ │ ├── css/ │ │ │ │ ├── css.js │ │ │ │ ├── index.html │ │ │ │ ├── less.html │ │ │ │ └── scss.html │ │ │ ├── javascript/ │ │ │ │ ├── index.html │ │ │ │ ├── javascript.js │ │ │ │ ├── json-ld.html │ │ │ │ └── typescript.html │ │ │ └── xml/ │ │ │ ├── index.html │ │ │ └── xml.js │ │ ├── contentbuilder-src.js │ │ ├── contentbuilder.css │ │ ├── contentbuilder.js │ │ ├── fonts.html │ │ ├── fontsize.html │ │ ├── headings.html │ │ ├── icons/ │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── config.json │ │ │ ├── css/ │ │ │ │ ├── animation.css │ │ │ │ ├── fontello-codes.css │ │ │ │ ├── fontello-embedded.css │ │ │ │ └── fontello.css │ │ │ └── demo.html │ │ ├── new-contentbuilder.css │ │ └── saveimages.js │ ├── custom_example1.html │ ├── example-email.html │ ├── example1-bootstrap.html │ ├── example1-foundation.html │ ├── example1.html │ ├── example2-bootstrap.aspx │ ├── example2-bootstrap.php.html │ ├── example2.aspx │ ├── example2.html │ ├── example2.php.html │ ├── example3-bootstrap.aspx │ ├── example3-bootstrap.php.html │ ├── example3.aspx │ ├── example3.php.html │ ├── example4.html │ ├── example5.html │ ├── example6-lightbox.aspx │ ├── example6-lightbox.php.html │ ├── example7.html │ ├── files.html │ ├── images.html │ ├── license.txt │ ├── readme.txt │ ├── saveimage-large.ashx │ ├── saveimage-large.php.html │ ├── saveimage-module.ashx │ ├── saveimage-module.php.html │ ├── saveimage.ashx │ ├── saveimage.php.html │ └── whatsnew.txt ├── resources/ │ ├── js/ │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components/ │ │ └── Example.js │ ├── lang/ │ │ └── en/ │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── sass/ │ │ ├── _variables.scss │ │ └── app.scss │ └── views/ │ ├── admin/ │ │ ├── auth/ │ │ │ └── login.blade.php │ │ ├── includes/ │ │ │ ├── custom.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── sidebar.blade.php │ │ │ └── topbar.blade.php │ │ ├── layouts/ │ │ │ ├── admin.blade.php │ │ │ └── app.blade.php │ │ └── main/ │ │ ├── admin-users/ │ │ │ ├── _form.blade.php │ │ │ └── index.blade.php │ │ ├── business-requests/ │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ ├── contacts/ │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ ├── dashboard.blade.php │ │ ├── general/ │ │ │ ├── create.blade.php │ │ │ └── edit.blade.php │ │ ├── newsletters/ │ │ │ └── index.blade.php │ │ ├── pet-pro-business/ │ │ │ ├── _form.blade.php │ │ │ └── index.blade.php │ │ ├── pet-pro-categories/ │ │ │ ├── _form.blade.php │ │ │ └── index.blade.php │ │ ├── pet-pro-deals/ │ │ │ ├── _form.blade.php │ │ │ ├── create.blade.php │ │ │ └── edit.blade.php │ │ ├── pet-pro-events/ │ │ │ ├── _form.blade.php │ │ │ ├── create.blade.php │ │ │ └── edit.blade.php │ │ ├── pet-pro-gallery/ │ │ │ ├── _form.blade.php │ │ │ ├── create.blade.php │ │ │ └── edit.blade.php │ │ ├── pet-pro-request/ │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ ├── pet-pros/ │ │ │ ├── _form.blade.php │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── pet-type/ │ │ │ ├── _form.blade.php │ │ │ └── index.blade.php │ │ ├── product-review-categories/ │ │ │ ├── _form.blade.php │ │ │ └── index.blade.php │ │ ├── product-review-deals/ │ │ │ ├── _form.blade.php │ │ │ ├── create.blade.php │ │ │ └── edit.blade.php │ │ ├── product-reviews/ │ │ │ ├── _form.blade.php │ │ │ ├── content-builder.blade.php │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── old_content-builder.blade.php │ │ │ └── show.blade.php │ │ ├── testimonials/ │ │ │ ├── _form.blade.php │ │ │ └── index.blade.php │ │ ├── users/ │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ ├── watch-and-learn/ │ │ │ ├── _form.blade.php │ │ │ ├── content-builder.blade.php │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ ├── watch-and-learn-author/ │ │ │ ├── _form.blade.php │ │ │ └── index.blade.php │ │ ├── watch-and-learn-categories/ │ │ │ ├── _form.blade.php │ │ │ └── index.blade.php │ │ └── watch-and-learn-medias/ │ │ └── index.blade.php │ └── emails/ │ ├── addSubscriber.blade.php │ ├── api/ │ │ └── v1/ │ │ ├── auth/ │ │ │ └── passwordReset.blade.php │ │ ├── businessRequest/ │ │ │ └── sendBusinessRequestEmail.blade.php │ │ ├── contact/ │ │ │ └── sendContactEmail.blade.php │ │ └── watchAndLearnComment/ │ │ └── sendWatchAndLearnCommentNotificationEmail.blade.php │ └── contactForm.blade.php ├── routes/ │ ├── admin.php │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── server.php ├── storage/ │ ├── app/ │ │ └── .gitignore │ ├── framework/ │ │ ├── .gitignore │ │ ├── cache/ │ │ │ └── .gitignore │ │ ├── sessions/ │ │ │ └── .gitignore │ │ ├── testing/ │ │ │ └── .gitignore │ │ └── views/ │ │ └── .gitignore │ └── logs/ │ └── .gitignore ├── tests/ │ ├── CreatesApplication.php │ ├── Feature/ │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit/ │ └── ExampleTest.php └── webpack.mix.js