├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .idea ├── .gitignore ├── composerJson.xml ├── goout2.iml ├── laravel-plugin.xml ├── misc.xml ├── modules.xml ├── php.xml ├── symfony2.xml └── vcs.xml ├── .styleci.yml ├── Procfile ├── analysis.txt ├── app ├── Cashing │ ├── Countries.php │ ├── SiteSettings.php │ └── Traits │ │ └── Refreshable.php ├── Console │ ├── Commands │ │ └── AppInstall.php │ └── Kernel.php ├── Eloquent │ ├── Countries.php │ ├── Orders.php │ ├── Profiles.php │ ├── SiteSettings.php │ ├── Tasks.php │ ├── Universities.php │ └── Users.php ├── Events │ ├── Chats │ │ └── ChatEvent.php │ ├── Orders │ │ ├── DelegateAssigned.php │ │ ├── OrderCreated.php │ │ └── OrderUpdated.php │ └── Tasks │ │ ├── TaskCreated.php │ │ └── TaskUpdated.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── CountryController.php │ │ │ ├── CountryDelegateController.php │ │ │ ├── DashboardController.php │ │ │ ├── FeatureController.php │ │ │ ├── OrderController.php │ │ │ ├── OrderDelegateController.php │ │ │ ├── SettingController.php │ │ │ ├── UniversityController.php │ │ │ └── UserController.php │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── ChatController.php │ │ ├── Controller.php │ │ ├── CountryController.php │ │ ├── LandingController.php │ │ ├── NotificationController.php │ │ ├── OrderController.php │ │ ├── ProfileController.php │ │ ├── TaskController.php │ │ └── UniversityController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Admin.php │ │ ├── AuthAdmin.php │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── GuestAdmin.php │ │ ├── ProfileCompleted.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── SuperAdmin.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── Admin │ │ ├── Features │ │ │ └── FeatureStoreRequest.php │ │ ├── Orders │ │ │ └── OrderUpdateRequest.php │ │ ├── Settings │ │ │ └── GeneralSettingsUpdateRequest.php │ │ ├── Universities │ │ │ ├── UniversityStoreRequest.php │ │ │ └── UniversityUpdateRequest.php │ │ └── Users │ │ │ └── UserStoreRequest.php │ │ ├── AssignOrderDelegateRequest.php │ │ ├── BaseFormRequest.php │ │ ├── Orders │ │ └── OrderStoreRequest.php │ │ ├── Profiles │ │ ├── GeneralSettingsUpdateRequest.php │ │ ├── OptionalSettingUpdateRequest.php │ │ └── RequiredEducationSettingsUpdateRequest.php │ │ └── Tasks │ │ └── TaskStoreRequest.php ├── Listeners │ ├── Chats │ │ └── ChatListener.php │ ├── OrderDelegate │ │ ├── NotifyDelegate.php │ │ └── NotifyOrderCreator.php │ ├── Orders │ │ ├── NotifyAdmins.php │ │ └── NotifyCreator.php │ └── Tasks │ │ └── NotifyTaskBased.php ├── Models │ ├── AdditionalSetting.php │ ├── Announcement.php │ ├── Country.php │ ├── GeneralSetting.php │ ├── Order.php │ ├── Profile.php │ ├── SiteFeature.php │ ├── Task.php │ ├── University.php │ └── User.php ├── Notifications │ ├── Orders │ │ ├── DelegateAssigned.php │ │ ├── OrderCreated.php │ │ └── OrderUpdated.php │ ├── Tasks │ │ ├── TaskCreated.php │ │ └── TaskUpdated.php │ └── Users │ │ └── UserCreated.php ├── Observers │ ├── UniversityObserver.php │ └── UserObserver.php ├── Policies │ └── OrderPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Rules │ ├── ValidCountry.php │ └── ValidDelegator.php ├── Services │ ├── Admin │ │ ├── Orders │ │ │ ├── OrderIndexService.php │ │ │ └── OrderUpdateService.php │ │ ├── Settings │ │ │ └── SiteSettingsUpdateService.php │ │ ├── SiteFeatures │ │ │ └── SiteFeatureService.php │ │ └── Users │ │ │ └── UserStoreService.php │ ├── Orders │ │ ├── AssignDelegateService.php │ │ ├── OrderChatService.php │ │ ├── OrderShowService.php │ │ └── OrderStoreService.php │ ├── Profiles │ │ ├── ProfileIndexService.php │ │ └── ProfileUpdateService.php │ └── Tasks │ │ ├── TaskIndexService.php │ │ ├── TaskStoreService.php │ │ └── TaskUpdateService.php ├── Support │ ├── CustomQueryBuilder.php │ ├── Traits │ │ └── Datatable │ │ │ └── Dataviewer.php │ └── helper.php ├── Traits │ └── HasStatus.php └── ViewComposers │ └── NavigationComposer.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── analytics.php ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── OrderFactory.php │ ├── UniversityFactory.php │ └── UserFactory.php ├── migrations │ ├── 2013_09_05_150139_create_countries_table.php │ ├── 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 │ ├── 2019_09_07_080000_create_general_settings_table.php │ ├── 2019_09_07_160506_create_site_features_table.php │ ├── 2019_09_07_161038_create_additional_settings_table.php │ ├── 2019_09_08_080215_create_orders_table.php │ ├── 2019_09_08_101714_country_order.php │ ├── 2019_09_08_122933_create_profiles_table.php │ ├── 2019_09_09_142949_create_universities_table.php │ ├── 2019_09_09_143252_order_university.php │ ├── 2019_09_10_204422_create_notifications_table.php │ ├── 2019_09_10_205908_create_jobs_table.php │ ├── 2019_09_13_220927_create_tasks_table.php │ └── 2019_09_17_174919_create_announcements_table.php └── seeds │ ├── CountriesTableSeeder.php │ ├── DatabaseSeeder.php │ ├── GeneralSettingsTableSeeder.php │ ├── SpecializationsTableSeeder.php │ └── UsersTableSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ ├── bulma.css │ ├── core.css │ ├── core.css.map │ ├── core_deep-blue.css │ ├── core_deep-blue.css.map │ ├── core_demo.css │ ├── core_demo.css.map │ ├── core_flashy.css │ ├── core_flashy.css.map │ ├── core_green.css │ ├── core_green.css.map │ ├── core_lemonade.css │ ├── core_lemonade.css.map │ ├── custom.css │ ├── dashboard.css │ ├── dashboard.css.map │ ├── ggtooltip.css │ ├── icons.min.css │ ├── slick-theme.css │ ├── slick.css │ ├── wallop--fade.css │ ├── wallop--scale.css │ └── wallop.css ├── favicon.ico ├── fonts │ ├── fontawesome-webfont.woff2 │ ├── simple-line-icons.ttf │ └── text │ │ └── nexa │ │ ├── Nexa Bold.otf │ │ ├── Nexa Light.otf │ │ ├── NexaBold.ttf │ │ ├── NexaBold.woff │ │ ├── NexaLight.ttf │ │ └── NexaLight.woff ├── images │ ├── ajax-loader.gif │ ├── chat-pic.png │ ├── create-order-pic.png │ ├── default-avatar.png │ ├── female-avatar.png │ ├── fileuploader-dragdrop-icon.png │ ├── male-avatar.png │ ├── map.svg │ ├── profile.svg │ ├── registering-pic.png │ ├── site-icon.png │ └── univ.png ├── index.php ├── js │ ├── app.js │ ├── auth.js │ ├── common.js │ ├── components-modals.js │ ├── embed.js │ ├── ggtooltip.js │ ├── jquery.counterup.min.js │ ├── jquery.waypoints.min.js │ ├── main.js │ ├── scrollreveal.min.js │ └── slick.min.js ├── mix-manifest.json ├── robots.txt └── scss │ ├── _colors.scss │ ├── _mixins.scss │ ├── components │ ├── _accordion.scss │ ├── _boxes.scss │ ├── _buttons.scss │ ├── _cards.scss │ ├── _dialogs.scss │ ├── _dropdowns.scss │ ├── _forms.scss │ ├── _labels.scss │ ├── _lists.scss │ ├── _messages.scss │ ├── _pricing.scss │ ├── _tables.scss │ ├── _tabs.scss │ └── _testimonials.scss │ ├── core.scss │ ├── core_deep-blue.scss │ ├── core_demo.scss │ ├── core_flashy.scss │ ├── core_green.scss │ ├── core_lemonade.scss │ ├── dashboard.scss │ ├── extensions │ ├── _badge.scss │ ├── _checkboxes.scss │ ├── _quickview.scss │ ├── _range.scss │ ├── _ribbon.scss │ ├── _slider.scss │ ├── _switch.scss │ ├── _timeline.scss │ └── _uploader.scss │ ├── layout │ ├── _animations.scss │ ├── _footer.scss │ ├── _helpers.scss │ ├── _hero.scss │ ├── _navbar.scss │ ├── _navigation.scss │ ├── _pageloader.scss │ ├── _responsive.scss │ └── _sections.scss │ ├── pages │ ├── _agency.scss │ ├── _auth.scss │ ├── _demo.scss │ ├── _details.scss │ ├── _landing-v1.scss │ ├── _landing-v2.scss │ ├── _landing-v3.scss │ ├── _landing.scss │ └── _startup.scss │ └── themes │ ├── _dashboard.scss │ ├── _deep-blue.scss │ ├── _flashy.scss │ ├── _green.scss │ ├── _lemonade.scss │ └── _main.scss ├── resources ├── js │ ├── app.js │ ├── authorization.js │ ├── bootstrap.js │ ├── components │ │ ├── chat │ │ │ └── ChatBox.vue │ │ ├── countries │ │ │ └── Collection.vue │ │ ├── global │ │ │ ├── Filters │ │ │ │ ├── Buttons.vue │ │ │ │ └── Filterable.vue │ │ │ ├── Notifications │ │ │ │ └── Collection.vue │ │ │ └── Specializations │ │ │ │ ├── Specialization.vue │ │ │ │ └── Specializations.vue │ │ ├── orders │ │ │ ├── AssignDelegateForm.vue │ │ │ ├── BudgetSelection.vue │ │ │ ├── Collection.vue │ │ │ ├── CountriesSelection.vue │ │ │ ├── CreateOrderForm.vue │ │ │ ├── EditOrderForm.vue │ │ │ ├── InfoBlock.vue │ │ │ ├── PreviewSelections.vue │ │ │ ├── SpecializationsSelection.vue │ │ │ ├── UniversitiesSelection.vue │ │ │ ├── mixins │ │ │ │ ├── Finishable.vue │ │ │ │ └── Selectable.vue │ │ │ └── modals │ │ │ │ └── UniversityDetails.vue │ │ ├── profiles │ │ │ ├── GeneralSettingsForm.vue │ │ │ ├── OptionalSettings.vue │ │ │ ├── ProfileForm.vue │ │ │ ├── ProfilePage.vue │ │ │ └── RequiredEducationSettingsForm.vue │ │ ├── settings │ │ │ └── FeaturesCollection.vue │ │ ├── tasks │ │ │ ├── Collection.vue │ │ │ └── Task.vue │ │ ├── universities │ │ │ └── Collection.vue │ │ └── users │ │ │ └── Collection.vue │ ├── global_components.js │ └── packages.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── admin │ ├── auth │ │ ├── login.blade.php │ │ ├── passwords │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ │ ├── register.blade.php │ │ └── verify.blade.php │ ├── countries │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── features │ │ ├── create.blade.php │ │ └── index.blade.php │ ├── index.blade.php │ ├── orders │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── settings │ │ └── index.blade.php │ ├── universities │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ └── users │ │ ├── create.blade.php │ │ └── index.blade.php │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── components │ └── auth.blade.php │ ├── countries │ ├── index.blade.php │ └── show.blade.php │ ├── layouts │ ├── app.blade.php │ ├── auth.blade.php │ └── partials │ │ ├── _errors.blade.php │ │ ├── _uploadcare_script.blade.php │ │ ├── footer.blade.php │ │ ├── head.blade.php │ │ ├── menu.blade.php │ │ ├── navigation.blade.php │ │ └── scripts.blade.php │ ├── mail │ └── orders │ │ ├── created.blade.php │ │ ├── delegate_assigned.blade.php │ │ └── updated.blade.php │ ├── orders │ ├── create.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── profiles │ └── index.blade.php │ ├── static │ ├── about.blade.php │ └── how_to_start.blade.php │ ├── tasks │ └── index.blade.php │ ├── universities │ └── show.blade.php │ └── welcome.blade.php ├── routes ├── admin.php ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php ├── Unit │ └── ExampleTest.php └── bootstrap.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Default ignored files 3 | /workspace.xml -------------------------------------------------------------------------------- /.idea/composerJson.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/.idea/composerJson.xml -------------------------------------------------------------------------------- /.idea/goout2.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/.idea/goout2.iml -------------------------------------------------------------------------------- /.idea/laravel-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/.idea/laravel-plugin.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/.idea/php.xml -------------------------------------------------------------------------------- /.idea/symfony2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/.idea/symfony2.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/.styleci.yml -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/Procfile -------------------------------------------------------------------------------- /analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/analysis.txt -------------------------------------------------------------------------------- /app/Cashing/Countries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Cashing/Countries.php -------------------------------------------------------------------------------- /app/Cashing/SiteSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Cashing/SiteSettings.php -------------------------------------------------------------------------------- /app/Cashing/Traits/Refreshable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Cashing/Traits/Refreshable.php -------------------------------------------------------------------------------- /app/Console/Commands/AppInstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Console/Commands/AppInstall.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Eloquent/Countries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Eloquent/Countries.php -------------------------------------------------------------------------------- /app/Eloquent/Orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Eloquent/Orders.php -------------------------------------------------------------------------------- /app/Eloquent/Profiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Eloquent/Profiles.php -------------------------------------------------------------------------------- /app/Eloquent/SiteSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Eloquent/SiteSettings.php -------------------------------------------------------------------------------- /app/Eloquent/Tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Eloquent/Tasks.php -------------------------------------------------------------------------------- /app/Eloquent/Universities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Eloquent/Universities.php -------------------------------------------------------------------------------- /app/Eloquent/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Eloquent/Users.php -------------------------------------------------------------------------------- /app/Events/Chats/ChatEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Events/Chats/ChatEvent.php -------------------------------------------------------------------------------- /app/Events/Orders/DelegateAssigned.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Events/Orders/DelegateAssigned.php -------------------------------------------------------------------------------- /app/Events/Orders/OrderCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Events/Orders/OrderCreated.php -------------------------------------------------------------------------------- /app/Events/Orders/OrderUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Events/Orders/OrderUpdated.php -------------------------------------------------------------------------------- /app/Events/Tasks/TaskCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Events/Tasks/TaskCreated.php -------------------------------------------------------------------------------- /app/Events/Tasks/TaskUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Events/Tasks/TaskUpdated.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/CountryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/Admin/CountryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/CountryDelegateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/Admin/CountryDelegateController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/Admin/DashboardController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/FeatureController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/Admin/FeatureController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/OrderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/Admin/OrderController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/OrderDelegateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/Admin/OrderDelegateController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/SettingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/Admin/SettingController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/UniversityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/Admin/UniversityController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/Admin/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ChatController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/ChatController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/CountryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/CountryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/LandingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/LandingController.php -------------------------------------------------------------------------------- /app/Http/Controllers/NotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/NotificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/OrderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/OrderController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TaskController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/TaskController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UniversityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Controllers/UniversityController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Middleware/Admin.php -------------------------------------------------------------------------------- /app/Http/Middleware/AuthAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Middleware/AuthAdmin.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/GuestAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Middleware/GuestAdmin.php -------------------------------------------------------------------------------- /app/Http/Middleware/ProfileCompleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Middleware/ProfileCompleted.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/SuperAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Middleware/SuperAdmin.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Features/FeatureStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Requests/Admin/Features/FeatureStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Orders/OrderUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Requests/Admin/Orders/OrderUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Settings/GeneralSettingsUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Requests/Admin/Settings/GeneralSettingsUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Universities/UniversityStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Requests/Admin/Universities/UniversityStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Universities/UniversityUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Requests/Admin/Universities/UniversityUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Users/UserStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Requests/Admin/Users/UserStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/AssignOrderDelegateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Requests/AssignOrderDelegateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/BaseFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Requests/BaseFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Orders/OrderStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Requests/Orders/OrderStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Profiles/GeneralSettingsUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Requests/Profiles/GeneralSettingsUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Profiles/OptionalSettingUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Requests/Profiles/OptionalSettingUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Profiles/RequiredEducationSettingsUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Requests/Profiles/RequiredEducationSettingsUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Tasks/TaskStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Http/Requests/Tasks/TaskStoreRequest.php -------------------------------------------------------------------------------- /app/Listeners/Chats/ChatListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Listeners/Chats/ChatListener.php -------------------------------------------------------------------------------- /app/Listeners/OrderDelegate/NotifyDelegate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Listeners/OrderDelegate/NotifyDelegate.php -------------------------------------------------------------------------------- /app/Listeners/OrderDelegate/NotifyOrderCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Listeners/OrderDelegate/NotifyOrderCreator.php -------------------------------------------------------------------------------- /app/Listeners/Orders/NotifyAdmins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Listeners/Orders/NotifyAdmins.php -------------------------------------------------------------------------------- /app/Listeners/Orders/NotifyCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Listeners/Orders/NotifyCreator.php -------------------------------------------------------------------------------- /app/Listeners/Tasks/NotifyTaskBased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Listeners/Tasks/NotifyTaskBased.php -------------------------------------------------------------------------------- /app/Models/AdditionalSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Models/AdditionalSetting.php -------------------------------------------------------------------------------- /app/Models/Announcement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Models/Announcement.php -------------------------------------------------------------------------------- /app/Models/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Models/Country.php -------------------------------------------------------------------------------- /app/Models/GeneralSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Models/GeneralSetting.php -------------------------------------------------------------------------------- /app/Models/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Models/Order.php -------------------------------------------------------------------------------- /app/Models/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Models/Profile.php -------------------------------------------------------------------------------- /app/Models/SiteFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Models/SiteFeature.php -------------------------------------------------------------------------------- /app/Models/Task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Models/Task.php -------------------------------------------------------------------------------- /app/Models/University.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Models/University.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Notifications/Orders/DelegateAssigned.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Notifications/Orders/DelegateAssigned.php -------------------------------------------------------------------------------- /app/Notifications/Orders/OrderCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Notifications/Orders/OrderCreated.php -------------------------------------------------------------------------------- /app/Notifications/Orders/OrderUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Notifications/Orders/OrderUpdated.php -------------------------------------------------------------------------------- /app/Notifications/Tasks/TaskCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Notifications/Tasks/TaskCreated.php -------------------------------------------------------------------------------- /app/Notifications/Tasks/TaskUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Notifications/Tasks/TaskUpdated.php -------------------------------------------------------------------------------- /app/Notifications/Users/UserCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Notifications/Users/UserCreated.php -------------------------------------------------------------------------------- /app/Observers/UniversityObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Observers/UniversityObserver.php -------------------------------------------------------------------------------- /app/Observers/UserObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Observers/UserObserver.php -------------------------------------------------------------------------------- /app/Policies/OrderPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Policies/OrderPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Rules/ValidCountry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Rules/ValidCountry.php -------------------------------------------------------------------------------- /app/Rules/ValidDelegator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Rules/ValidDelegator.php -------------------------------------------------------------------------------- /app/Services/Admin/Orders/OrderIndexService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Services/Admin/Orders/OrderIndexService.php -------------------------------------------------------------------------------- /app/Services/Admin/Orders/OrderUpdateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Services/Admin/Orders/OrderUpdateService.php -------------------------------------------------------------------------------- /app/Services/Admin/Settings/SiteSettingsUpdateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Services/Admin/Settings/SiteSettingsUpdateService.php -------------------------------------------------------------------------------- /app/Services/Admin/SiteFeatures/SiteFeatureService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Services/Admin/SiteFeatures/SiteFeatureService.php -------------------------------------------------------------------------------- /app/Services/Admin/Users/UserStoreService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Services/Admin/Users/UserStoreService.php -------------------------------------------------------------------------------- /app/Services/Orders/AssignDelegateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Services/Orders/AssignDelegateService.php -------------------------------------------------------------------------------- /app/Services/Orders/OrderChatService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Services/Orders/OrderChatService.php -------------------------------------------------------------------------------- /app/Services/Orders/OrderShowService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Services/Orders/OrderShowService.php -------------------------------------------------------------------------------- /app/Services/Orders/OrderStoreService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Services/Orders/OrderStoreService.php -------------------------------------------------------------------------------- /app/Services/Profiles/ProfileIndexService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Services/Profiles/ProfileIndexService.php -------------------------------------------------------------------------------- /app/Services/Profiles/ProfileUpdateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Services/Profiles/ProfileUpdateService.php -------------------------------------------------------------------------------- /app/Services/Tasks/TaskIndexService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Services/Tasks/TaskIndexService.php -------------------------------------------------------------------------------- /app/Services/Tasks/TaskStoreService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Services/Tasks/TaskStoreService.php -------------------------------------------------------------------------------- /app/Services/Tasks/TaskUpdateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Services/Tasks/TaskUpdateService.php -------------------------------------------------------------------------------- /app/Support/CustomQueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Support/CustomQueryBuilder.php -------------------------------------------------------------------------------- /app/Support/Traits/Datatable/Dataviewer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Support/Traits/Datatable/Dataviewer.php -------------------------------------------------------------------------------- /app/Support/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Support/helper.php -------------------------------------------------------------------------------- /app/Traits/HasStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/Traits/HasStatus.php -------------------------------------------------------------------------------- /app/ViewComposers/NavigationComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/app/ViewComposers/NavigationComposer.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/composer.lock -------------------------------------------------------------------------------- /config/analytics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/config/analytics.php -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/factories/OrderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/factories/OrderFactory.php -------------------------------------------------------------------------------- /database/factories/UniversityFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/factories/UniversityFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2013_09_05_150139_create_countries_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/migrations/2013_09_05_150139_create_countries_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_07_080000_create_general_settings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/migrations/2019_09_07_080000_create_general_settings_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_07_160506_create_site_features_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/migrations/2019_09_07_160506_create_site_features_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_07_161038_create_additional_settings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/migrations/2019_09_07_161038_create_additional_settings_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_08_080215_create_orders_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/migrations/2019_09_08_080215_create_orders_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_08_101714_country_order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/migrations/2019_09_08_101714_country_order.php -------------------------------------------------------------------------------- /database/migrations/2019_09_08_122933_create_profiles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/migrations/2019_09_08_122933_create_profiles_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_09_142949_create_universities_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/migrations/2019_09_09_142949_create_universities_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_09_143252_order_university.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/migrations/2019_09_09_143252_order_university.php -------------------------------------------------------------------------------- /database/migrations/2019_09_10_204422_create_notifications_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/migrations/2019_09_10_204422_create_notifications_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_10_205908_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/migrations/2019_09_10_205908_create_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_13_220927_create_tasks_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/migrations/2019_09_13_220927_create_tasks_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_17_174919_create_announcements_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/migrations/2019_09_17_174919_create_announcements_table.php -------------------------------------------------------------------------------- /database/seeds/CountriesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/seeds/CountriesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/GeneralSettingsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/seeds/GeneralSettingsTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/SpecializationsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/seeds/SpecializationsTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/UsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/database/seeds/UsersTableSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/bulma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/bulma.css -------------------------------------------------------------------------------- /public/css/core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/core.css -------------------------------------------------------------------------------- /public/css/core.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/core.css.map -------------------------------------------------------------------------------- /public/css/core_deep-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/core_deep-blue.css -------------------------------------------------------------------------------- /public/css/core_deep-blue.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/core_deep-blue.css.map -------------------------------------------------------------------------------- /public/css/core_demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/core_demo.css -------------------------------------------------------------------------------- /public/css/core_demo.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/core_demo.css.map -------------------------------------------------------------------------------- /public/css/core_flashy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/core_flashy.css -------------------------------------------------------------------------------- /public/css/core_flashy.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/core_flashy.css.map -------------------------------------------------------------------------------- /public/css/core_green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/core_green.css -------------------------------------------------------------------------------- /public/css/core_green.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/core_green.css.map -------------------------------------------------------------------------------- /public/css/core_lemonade.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/core_lemonade.css -------------------------------------------------------------------------------- /public/css/core_lemonade.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/core_lemonade.css.map -------------------------------------------------------------------------------- /public/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/custom.css -------------------------------------------------------------------------------- /public/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/dashboard.css -------------------------------------------------------------------------------- /public/css/dashboard.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/dashboard.css.map -------------------------------------------------------------------------------- /public/css/ggtooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/ggtooltip.css -------------------------------------------------------------------------------- /public/css/icons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/icons.min.css -------------------------------------------------------------------------------- /public/css/slick-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/slick-theme.css -------------------------------------------------------------------------------- /public/css/slick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/slick.css -------------------------------------------------------------------------------- /public/css/wallop--fade.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/wallop--fade.css -------------------------------------------------------------------------------- /public/css/wallop--scale.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/wallop--scale.css -------------------------------------------------------------------------------- /public/css/wallop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/css/wallop.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/simple-line-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/fonts/simple-line-icons.ttf -------------------------------------------------------------------------------- /public/fonts/text/nexa/Nexa Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/fonts/text/nexa/Nexa Bold.otf -------------------------------------------------------------------------------- /public/fonts/text/nexa/Nexa Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/fonts/text/nexa/Nexa Light.otf -------------------------------------------------------------------------------- /public/fonts/text/nexa/NexaBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/fonts/text/nexa/NexaBold.ttf -------------------------------------------------------------------------------- /public/fonts/text/nexa/NexaBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/fonts/text/nexa/NexaBold.woff -------------------------------------------------------------------------------- /public/fonts/text/nexa/NexaLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/fonts/text/nexa/NexaLight.ttf -------------------------------------------------------------------------------- /public/fonts/text/nexa/NexaLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/fonts/text/nexa/NexaLight.woff -------------------------------------------------------------------------------- /public/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/images/ajax-loader.gif -------------------------------------------------------------------------------- /public/images/chat-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/images/chat-pic.png -------------------------------------------------------------------------------- /public/images/create-order-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/images/create-order-pic.png -------------------------------------------------------------------------------- /public/images/default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/images/default-avatar.png -------------------------------------------------------------------------------- /public/images/female-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/images/female-avatar.png -------------------------------------------------------------------------------- /public/images/fileuploader-dragdrop-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/images/fileuploader-dragdrop-icon.png -------------------------------------------------------------------------------- /public/images/male-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/images/male-avatar.png -------------------------------------------------------------------------------- /public/images/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/images/map.svg -------------------------------------------------------------------------------- /public/images/profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/images/profile.svg -------------------------------------------------------------------------------- /public/images/registering-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/images/registering-pic.png -------------------------------------------------------------------------------- /public/images/site-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/images/site-icon.png -------------------------------------------------------------------------------- /public/images/univ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/images/univ.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/js/auth.js -------------------------------------------------------------------------------- /public/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/js/common.js -------------------------------------------------------------------------------- /public/js/components-modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/js/components-modals.js -------------------------------------------------------------------------------- /public/js/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/js/embed.js -------------------------------------------------------------------------------- /public/js/ggtooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/js/ggtooltip.js -------------------------------------------------------------------------------- /public/js/jquery.counterup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/js/jquery.counterup.min.js -------------------------------------------------------------------------------- /public/js/jquery.waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/js/jquery.waypoints.min.js -------------------------------------------------------------------------------- /public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/js/main.js -------------------------------------------------------------------------------- /public/js/scrollreveal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/js/scrollreveal.min.js -------------------------------------------------------------------------------- /public/js/slick.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/js/slick.min.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/scss/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/_colors.scss -------------------------------------------------------------------------------- /public/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/_mixins.scss -------------------------------------------------------------------------------- /public/scss/components/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/components/_accordion.scss -------------------------------------------------------------------------------- /public/scss/components/_boxes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/components/_boxes.scss -------------------------------------------------------------------------------- /public/scss/components/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/components/_buttons.scss -------------------------------------------------------------------------------- /public/scss/components/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/components/_cards.scss -------------------------------------------------------------------------------- /public/scss/components/_dialogs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/components/_dialogs.scss -------------------------------------------------------------------------------- /public/scss/components/_dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/components/_dropdowns.scss -------------------------------------------------------------------------------- /public/scss/components/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/components/_forms.scss -------------------------------------------------------------------------------- /public/scss/components/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/components/_labels.scss -------------------------------------------------------------------------------- /public/scss/components/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/components/_lists.scss -------------------------------------------------------------------------------- /public/scss/components/_messages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/components/_messages.scss -------------------------------------------------------------------------------- /public/scss/components/_pricing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/components/_pricing.scss -------------------------------------------------------------------------------- /public/scss/components/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/components/_tables.scss -------------------------------------------------------------------------------- /public/scss/components/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/components/_tabs.scss -------------------------------------------------------------------------------- /public/scss/components/_testimonials.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/components/_testimonials.scss -------------------------------------------------------------------------------- /public/scss/core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/core.scss -------------------------------------------------------------------------------- /public/scss/core_deep-blue.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/core_deep-blue.scss -------------------------------------------------------------------------------- /public/scss/core_demo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/core_demo.scss -------------------------------------------------------------------------------- /public/scss/core_flashy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/core_flashy.scss -------------------------------------------------------------------------------- /public/scss/core_green.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/core_green.scss -------------------------------------------------------------------------------- /public/scss/core_lemonade.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/core_lemonade.scss -------------------------------------------------------------------------------- /public/scss/dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/dashboard.scss -------------------------------------------------------------------------------- /public/scss/extensions/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/extensions/_badge.scss -------------------------------------------------------------------------------- /public/scss/extensions/_checkboxes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/extensions/_checkboxes.scss -------------------------------------------------------------------------------- /public/scss/extensions/_quickview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/extensions/_quickview.scss -------------------------------------------------------------------------------- /public/scss/extensions/_range.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/extensions/_range.scss -------------------------------------------------------------------------------- /public/scss/extensions/_ribbon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/extensions/_ribbon.scss -------------------------------------------------------------------------------- /public/scss/extensions/_slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/extensions/_slider.scss -------------------------------------------------------------------------------- /public/scss/extensions/_switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/extensions/_switch.scss -------------------------------------------------------------------------------- /public/scss/extensions/_timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/extensions/_timeline.scss -------------------------------------------------------------------------------- /public/scss/extensions/_uploader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/extensions/_uploader.scss -------------------------------------------------------------------------------- /public/scss/layout/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/layout/_animations.scss -------------------------------------------------------------------------------- /public/scss/layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/layout/_footer.scss -------------------------------------------------------------------------------- /public/scss/layout/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/layout/_helpers.scss -------------------------------------------------------------------------------- /public/scss/layout/_hero.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/layout/_hero.scss -------------------------------------------------------------------------------- /public/scss/layout/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/layout/_navbar.scss -------------------------------------------------------------------------------- /public/scss/layout/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/layout/_navigation.scss -------------------------------------------------------------------------------- /public/scss/layout/_pageloader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/layout/_pageloader.scss -------------------------------------------------------------------------------- /public/scss/layout/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/layout/_responsive.scss -------------------------------------------------------------------------------- /public/scss/layout/_sections.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/layout/_sections.scss -------------------------------------------------------------------------------- /public/scss/pages/_agency.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/pages/_agency.scss -------------------------------------------------------------------------------- /public/scss/pages/_auth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/pages/_auth.scss -------------------------------------------------------------------------------- /public/scss/pages/_demo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/pages/_demo.scss -------------------------------------------------------------------------------- /public/scss/pages/_details.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/pages/_details.scss -------------------------------------------------------------------------------- /public/scss/pages/_landing-v1.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/pages/_landing-v1.scss -------------------------------------------------------------------------------- /public/scss/pages/_landing-v2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/pages/_landing-v2.scss -------------------------------------------------------------------------------- /public/scss/pages/_landing-v3.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/pages/_landing-v3.scss -------------------------------------------------------------------------------- /public/scss/pages/_landing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/pages/_landing.scss -------------------------------------------------------------------------------- /public/scss/pages/_startup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/pages/_startup.scss -------------------------------------------------------------------------------- /public/scss/themes/_dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/themes/_dashboard.scss -------------------------------------------------------------------------------- /public/scss/themes/_deep-blue.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/themes/_deep-blue.scss -------------------------------------------------------------------------------- /public/scss/themes/_flashy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/themes/_flashy.scss -------------------------------------------------------------------------------- /public/scss/themes/_green.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/themes/_green.scss -------------------------------------------------------------------------------- /public/scss/themes/_lemonade.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/themes/_lemonade.scss -------------------------------------------------------------------------------- /public/scss/themes/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/public/scss/themes/_main.scss -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/authorization.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/components/chat/ChatBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/chat/ChatBox.vue -------------------------------------------------------------------------------- /resources/js/components/countries/Collection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/countries/Collection.vue -------------------------------------------------------------------------------- /resources/js/components/global/Filters/Buttons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/global/Filters/Buttons.vue -------------------------------------------------------------------------------- /resources/js/components/global/Filters/Filterable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/global/Filters/Filterable.vue -------------------------------------------------------------------------------- /resources/js/components/global/Notifications/Collection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/global/Notifications/Collection.vue -------------------------------------------------------------------------------- /resources/js/components/global/Specializations/Specialization.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/global/Specializations/Specialization.vue -------------------------------------------------------------------------------- /resources/js/components/global/Specializations/Specializations.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/global/Specializations/Specializations.vue -------------------------------------------------------------------------------- /resources/js/components/orders/AssignDelegateForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/orders/AssignDelegateForm.vue -------------------------------------------------------------------------------- /resources/js/components/orders/BudgetSelection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/orders/BudgetSelection.vue -------------------------------------------------------------------------------- /resources/js/components/orders/Collection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/orders/Collection.vue -------------------------------------------------------------------------------- /resources/js/components/orders/CountriesSelection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/orders/CountriesSelection.vue -------------------------------------------------------------------------------- /resources/js/components/orders/CreateOrderForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/orders/CreateOrderForm.vue -------------------------------------------------------------------------------- /resources/js/components/orders/EditOrderForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/orders/EditOrderForm.vue -------------------------------------------------------------------------------- /resources/js/components/orders/InfoBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/orders/InfoBlock.vue -------------------------------------------------------------------------------- /resources/js/components/orders/PreviewSelections.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/orders/PreviewSelections.vue -------------------------------------------------------------------------------- /resources/js/components/orders/SpecializationsSelection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/orders/SpecializationsSelection.vue -------------------------------------------------------------------------------- /resources/js/components/orders/UniversitiesSelection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/orders/UniversitiesSelection.vue -------------------------------------------------------------------------------- /resources/js/components/orders/mixins/Finishable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/orders/mixins/Finishable.vue -------------------------------------------------------------------------------- /resources/js/components/orders/mixins/Selectable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/orders/mixins/Selectable.vue -------------------------------------------------------------------------------- /resources/js/components/orders/modals/UniversityDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/orders/modals/UniversityDetails.vue -------------------------------------------------------------------------------- /resources/js/components/profiles/GeneralSettingsForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/profiles/GeneralSettingsForm.vue -------------------------------------------------------------------------------- /resources/js/components/profiles/OptionalSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/profiles/OptionalSettings.vue -------------------------------------------------------------------------------- /resources/js/components/profiles/ProfileForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/profiles/ProfileForm.vue -------------------------------------------------------------------------------- /resources/js/components/profiles/ProfilePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/profiles/ProfilePage.vue -------------------------------------------------------------------------------- /resources/js/components/profiles/RequiredEducationSettingsForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/profiles/RequiredEducationSettingsForm.vue -------------------------------------------------------------------------------- /resources/js/components/settings/FeaturesCollection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/settings/FeaturesCollection.vue -------------------------------------------------------------------------------- /resources/js/components/tasks/Collection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/tasks/Collection.vue -------------------------------------------------------------------------------- /resources/js/components/tasks/Task.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/tasks/Task.vue -------------------------------------------------------------------------------- /resources/js/components/universities/Collection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/universities/Collection.vue -------------------------------------------------------------------------------- /resources/js/components/users/Collection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/components/users/Collection.vue -------------------------------------------------------------------------------- /resources/js/global_components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/global_components.js -------------------------------------------------------------------------------- /resources/js/packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/js/packages.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/views/admin/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/admin/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/admin/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/admin/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/admin/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/admin/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/admin/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/admin/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/admin/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/admin/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/admin/countries/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/admin/countries/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/countries/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/admin/countries/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/countries/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/admin/countries/show.blade.php -------------------------------------------------------------------------------- /resources/views/admin/features/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/admin/features/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/features/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/admin/features/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/admin/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/orders/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/admin/orders/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/orders/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/admin/orders/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/admin/settings/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/universities/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/admin/universities/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/universities/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/admin/universities/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/universities/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/admin/universities/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/users/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/admin/users/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/users/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/admin/users/index.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/components/auth.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/components/auth.blade.php -------------------------------------------------------------------------------- /resources/views/countries/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/countries/index.blade.php -------------------------------------------------------------------------------- /resources/views/countries/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/countries/show.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/auth.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/layouts/auth.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/partials/_errors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/layouts/partials/_errors.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/partials/_uploadcare_script.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/layouts/partials/_uploadcare_script.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/partials/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/layouts/partials/footer.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/partials/head.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/layouts/partials/head.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/partials/menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/layouts/partials/menu.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/partials/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/layouts/partials/navigation.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/partials/scripts.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/layouts/partials/scripts.blade.php -------------------------------------------------------------------------------- /resources/views/mail/orders/created.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/mail/orders/created.blade.php -------------------------------------------------------------------------------- /resources/views/mail/orders/delegate_assigned.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/mail/orders/delegate_assigned.blade.php -------------------------------------------------------------------------------- /resources/views/mail/orders/updated.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/mail/orders/updated.blade.php -------------------------------------------------------------------------------- /resources/views/orders/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/orders/create.blade.php -------------------------------------------------------------------------------- /resources/views/orders/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/orders/index.blade.php -------------------------------------------------------------------------------- /resources/views/orders/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/orders/show.blade.php -------------------------------------------------------------------------------- /resources/views/profiles/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/profiles/index.blade.php -------------------------------------------------------------------------------- /resources/views/static/about.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/static/about.blade.php -------------------------------------------------------------------------------- /resources/views/static/how_to_start.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/static/how_to_start.blade.php -------------------------------------------------------------------------------- /resources/views/tasks/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/tasks/index.blade.php -------------------------------------------------------------------------------- /resources/views/universities/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/universities/show.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/routes/admin.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /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/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theafaid/tylpan/HEAD/webpack.mix.js --------------------------------------------------------------------------------