├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── Actions │ ├── Fortify │ │ ├── CreateNewUser.php │ │ ├── PasswordValidationRules.php │ │ ├── ResetUserPassword.php │ │ ├── UpdateUserPassword.php │ │ └── UpdateUserProfileInformation.php │ └── Jetstream │ │ └── DeleteUser.php ├── Console │ ├── Commands │ │ └── UpdatePermissionsCommand.php │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Exports │ ├── ProductsExport.php │ └── UsersExport.php ├── Http │ ├── Controllers │ │ └── Controller.php │ ├── Kernel.php │ └── Middleware │ │ ├── AdminPanelCheck.php │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── UserMobileVerifyCheck.php │ │ ├── UserVerifyCheck.php │ │ └── VerifyCsrfToken.php ├── Jobs │ └── SendMobileTextMessageJob.php ├── Livewire │ ├── Admin │ │ ├── Content │ │ │ ├── Article │ │ │ │ ├── Create.php │ │ │ │ ├── Edit.php │ │ │ │ └── Index.php │ │ │ ├── Carousel │ │ │ │ ├── Create.php │ │ │ │ ├── Edit.php │ │ │ │ └── Index.php │ │ │ └── FAQ │ │ │ │ ├── Create.php │ │ │ │ ├── Edit.php │ │ │ │ └── Index.php │ │ ├── Dashboard │ │ │ └── Index.php │ │ ├── Setting │ │ │ ├── Category │ │ │ │ ├── Create.php │ │ │ │ ├── Edit.php │ │ │ │ └── Index.php │ │ │ └── Manage │ │ │ │ └── Index.php │ │ ├── Support │ │ │ └── Ticket │ │ │ │ ├── Archive.php │ │ │ │ ├── Index.php │ │ │ │ └── View.php │ │ └── User │ │ │ ├── Ban.php │ │ │ ├── Create.php │ │ │ ├── Edit.php │ │ │ ├── Index.php │ │ │ ├── Permission │ │ │ ├── Create.php │ │ │ ├── Edit.php │ │ │ └── Index.php │ │ │ ├── Permissions.php │ │ │ ├── Role │ │ │ ├── Create.php │ │ │ ├── Edit.php │ │ │ ├── Index.php │ │ │ ├── Permissions.php │ │ │ └── Users.php │ │ │ ├── Roles.php │ │ │ ├── Team │ │ │ ├── Create.php │ │ │ ├── Edit.php │ │ │ ├── Index.php │ │ │ └── Users.php │ │ │ ├── Verify │ │ │ ├── Check.php │ │ │ └── Index.php │ │ │ └── Wallet │ │ │ └── Index.php │ ├── App │ │ ├── Article │ │ │ ├── Index.php │ │ │ └── View.php │ │ ├── FAQ │ │ │ └── Index.php │ │ ├── Main │ │ │ ├── Index.php │ │ │ └── TestChart.php │ │ └── Notification │ │ │ └── View.php │ └── Panel │ │ ├── Dashboard │ │ └── Index.php │ │ ├── Support │ │ └── Ticket │ │ │ ├── Create.php │ │ │ ├── Index.php │ │ │ └── View.php │ │ └── User │ │ ├── Mobile.php │ │ ├── Verify.php │ │ ├── Verify │ │ ├── UploadIdCardFile.php │ │ └── UploadVerifyFile.php │ │ └── Wallet │ │ ├── Create.php │ │ └── Index.php ├── ModelFilters │ ├── ArticleFilter.php │ ├── CarouselFilter.php │ ├── CategoryFilter.php │ ├── FrequentlyAskedQuestionFilter.php │ ├── ProductFilter.php │ ├── TeamFilter.php │ ├── TicketFilter.php │ └── UserFilter.php ├── Models │ ├── Article.php │ ├── Carousel.php │ ├── Category.php │ ├── City.php │ ├── Country.php │ ├── DatabaseStorageModel.php │ ├── Deposit.php │ ├── FrequentlyAskedQuestion.php │ ├── Product.php │ ├── ProductMedia.php │ ├── ProductPrice.php │ ├── Province.php │ ├── Team.php │ ├── Ticket.php │ ├── TicketFile.php │ ├── TicketReplay.php │ ├── Transaction.php │ ├── User.php │ ├── UserAddress.php │ ├── UserVerify.php │ ├── UserVerifyCode.php │ ├── UserWallet.php │ ├── Wallet.php │ └── Withdraw.php ├── Notifications │ └── TicketReplied.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── FortifyServiceProvider.php │ ├── JetstreamServiceProvider.php │ └── RouteServiceProvider.php ├── Rules │ └── CheckUserVerifyCodeRule.php ├── Utils │ └── DatabaseStorage.php └── View │ └── Components │ ├── AdminLayout.php │ ├── AppLayout.php │ ├── GuestLayout.php │ └── PanelLayout.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── config ├── app.php ├── auth.php ├── authentication-log.php ├── bap.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── eloquentfilter.php ├── excel.php ├── filesystems.php ├── fortify.php ├── hashing.php ├── jetstream.php ├── laravellocalization.php ├── livewire-alert.php ├── livewire.php ├── log-viewer.php ├── logging.php ├── mail.php ├── modules.php ├── permission.php ├── queue.php ├── referral.php ├── sanctum.php ├── services.php ├── session.php ├── tags.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2014_10_12_200000_add_two_factor_columns_to_users_table.php │ ├── 2017_03_04_000000_create_bans_table.php │ ├── 2017_09_01_000000_create_authentication_log_table.php │ ├── 2018_01_13_052648_create_cart_storage_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2020_05_21_100000_create_teams_table.php │ ├── 2020_05_21_200000_create_team_user_table.php │ ├── 2020_05_21_300000_create_team_invitations_table.php │ ├── 2021_11_04_092349_create_sessions_table.php │ ├── 2021_11_10_154612_create_media_table.php │ ├── 2021_11_10_163124_create_tag_tables.php │ ├── 2021_11_11_133412_add_referral_to_users_table.php │ ├── 2021_11_11_180838_create_permission_tables.php │ ├── 2021_11_17_215228_create_categories_table.php │ ├── 2021_11_18_045302_create_articles_table.php │ ├── 2021_11_20_174843_create_tickets_table.php │ ├── 2021_11_20_175405_create_ticket_replays_table.php │ ├── 2021_11_20_175445_create_ticket_files_table.php │ ├── 2021_11_23_084216_create_frequently_asked_questions_table.php │ ├── 2021_11_28_145611_create_notifications_table.php │ ├── 2021_12_03_155818_create_user_verifies_table.php │ ├── 2022_03_03_053914_create_carousels_table.php │ ├── 2022_04_22_110910_add_teams_fields.php │ ├── 2022_05_26_033100_add_banned_at_column_to_users_table.php │ ├── 2022_05_28_164544_create_activity_log_table.php │ ├── 2022_05_28_164545_add_event_column_to_activity_log_table.php │ ├── 2022_05_28_164546_add_batch_uuid_column_to_activity_log_table.php │ ├── 2023_07_03_153439_create_user_verify_codes_table.php │ ├── 2023_07_07_091341_create_jobs_table.php │ ├── 2023_07_07_112319_create_wallets_table.php │ ├── 2023_07_16_071405_create_products_table.php │ ├── 2023_07_16_071504_create_product_media_table.php │ ├── 2023_07_16_071511_create_product_prices_table.php │ ├── 2023_07_16_072341_create_user_addresses_table.php │ ├── 2023_07_16_103144_create_countries_table.php │ ├── 2023_07_16_105225_create_provinces_table.php │ ├── 2023_07_16_105232_create_cities_table.php │ ├── 2023_07_22_061400_create_transactions_table.php │ ├── 2023_07_22_064355_create_deposits_table.php │ ├── 2023_07_22_064405_create_withdraws_table.php │ └── 2023_07_26_135127_create_user_wallets_table.php ├── seeders │ ├── CategorySeeder.php │ ├── CitySeeder.php │ ├── CountrySeeder.php │ ├── DatabaseSeeder.php │ ├── ProvinceSeeder.php │ ├── RoleAndPermissionSeeder.php │ └── UserSeeder.php └── sql │ ├── cities.sql │ ├── countries.sql │ └── provinces.sql ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── build │ ├── assets │ │ ├── app-0dfb6bff.css │ │ └── app-9c683e9d.js │ └── manifest.json ├── css │ └── app.css ├── favicon.ico ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── mstile-150x150.png │ ├── safari-pinned-tab.svg │ └── site.webmanifest ├── images │ ├── id-card.png │ ├── logo-dark.svg │ ├── logo-light.svg │ └── selfie.png ├── index.php ├── js │ ├── app.js │ └── app.js.LICENSE.txt ├── mix-manifest.json ├── robots.txt └── vendor │ └── livewire │ ├── livewire.esm.js │ ├── livewire.js │ ├── livewire.js.map │ ├── livewire.min.js │ ├── livewire.min.js.map │ └── manifest.json ├── resources ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── mstile-150x150.png │ ├── safari-pinned-tab.svg │ └── site.webmanifest ├── images │ ├── id-card.png │ ├── logo-dark.svg │ ├── logo-light.svg │ └── selfie.png ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ ├── en │ │ ├── auth.php │ │ ├── bap.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── permissions.php │ │ ├── roles.php │ │ └── validation.php │ ├── fa.json │ ├── fa │ │ ├── auth.php │ │ ├── bap.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── validation-inline.php │ │ └── validation.php │ └── vendor │ │ ├── authentication-log │ │ └── en │ │ │ └── messages.php │ │ └── log-viewer │ │ ├── ar.json │ │ ├── bg.json │ │ ├── de.json │ │ ├── es.json │ │ ├── et.json │ │ ├── fa.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hu.json │ │ ├── hy.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── ko.json │ │ ├── ms.json │ │ ├── nl.json │ │ ├── pl.json │ │ ├── pt-BR.json │ │ ├── ro.json │ │ ├── ru.json │ │ ├── si.json │ │ ├── sv.json │ │ ├── th.json │ │ ├── tr.json │ │ ├── uk.json │ │ ├── zh-TW.json │ │ └── zh.json ├── markdown │ ├── policy.md │ └── terms.md ├── scss │ ├── _custom.scss │ ├── _variables.scss │ ├── app.scss │ └── tabler.scss └── views │ ├── api │ ├── api-token-manager.blade.php │ └── index.blade.php │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ ├── two-factor-challenge.blade.php │ └── verify-email.blade.php │ ├── layouts │ ├── admin.blade.php │ ├── app.blade.php │ ├── custom │ │ ├── admin.blade.php │ │ ├── app.blade.php │ │ └── panel.blade.php │ ├── global │ │ ├── favicon.blade.php │ │ ├── foot-js.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ └── user-navbar.blade.php │ ├── guest.blade.php │ └── panel.blade.php │ ├── livewire │ ├── admin │ │ ├── content │ │ │ ├── article │ │ │ │ ├── create.blade.php │ │ │ │ ├── edit.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── carousel │ │ │ │ ├── create.blade.php │ │ │ │ ├── edit.blade.php │ │ │ │ └── index.blade.php │ │ │ └── f-a-q │ │ │ │ ├── create.blade.php │ │ │ │ ├── edit.blade.php │ │ │ │ └── index.blade.php │ │ ├── dashboard │ │ │ └── index.blade.php │ │ ├── setting │ │ │ ├── category │ │ │ │ ├── create.blade.php │ │ │ │ ├── edit.blade.php │ │ │ │ └── index.blade.php │ │ │ └── manage │ │ │ │ └── index.blade.php │ │ ├── support │ │ │ └── ticket │ │ │ │ ├── archive.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── view.blade.php │ │ └── user │ │ │ ├── ban.blade.php │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── permission │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ │ ├── permissions.blade.php │ │ │ ├── role │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── permissions.blade.php │ │ │ └── users.blade.php │ │ │ ├── roles.blade.php │ │ │ ├── team │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── users.blade.php │ │ │ ├── verify │ │ │ ├── check.blade.php │ │ │ └── index.blade.php │ │ │ └── wallet │ │ │ └── index.blade.php │ ├── app │ │ ├── article │ │ │ ├── index.blade.php │ │ │ └── view.blade.php │ │ ├── f-a-q │ │ │ └── index.blade.php │ │ ├── main │ │ │ ├── index.blade.php │ │ │ └── test-chart.blade.php │ │ └── notification │ │ │ └── view.blade.php │ └── panel │ │ ├── dashboard │ │ └── index.blade.php │ │ ├── support │ │ └── ticket │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ └── view.blade.php │ │ └── user │ │ ├── mobile.blade.php │ │ ├── verify.blade.php │ │ ├── verify │ │ ├── upload-id-card-file.blade.php │ │ └── upload-verify-file.blade.php │ │ └── wallet │ │ ├── create.blade.php │ │ └── index.blade.php │ ├── profile │ ├── delete-user-form.blade.php │ ├── logout-other-browser-sessions-form.blade.php │ ├── show.blade.php │ ├── two-factor-authentication-form.blade.php │ ├── update-password-form.blade.php │ └── update-profile-information-form.blade.php │ └── vendor │ ├── authentication-log │ └── emails │ │ └── new.blade.php │ ├── jetstream │ ├── components │ │ ├── action-message.blade.php │ │ ├── action-section.blade.php │ │ ├── application-logo.blade.php │ │ ├── application-mark.blade.php │ │ ├── authentication-card-logo.blade.php │ │ ├── authentication-card.blade.php │ │ ├── banner.blade.php │ │ ├── button.blade.php │ │ ├── checkbox.blade.php │ │ ├── confirmation-modal.blade.php │ │ ├── confirms-password.blade.php │ │ ├── danger-button.blade.php │ │ ├── dialog-modal.blade.php │ │ ├── dropdown-link.blade.php │ │ ├── dropdown.blade.php │ │ ├── form-section.blade.php │ │ ├── input-error.blade.php │ │ ├── input.blade.php │ │ ├── label.blade.php │ │ ├── modal.blade.php │ │ ├── nav-link.blade.php │ │ ├── secondary-button.blade.php │ │ ├── section-border.blade.php │ │ ├── section-title.blade.php │ │ ├── switchable-team.blade.php │ │ ├── validation-errors.blade.php │ │ └── welcome.blade.php │ └── mail │ │ └── team-invitation.blade.php │ └── log-viewer │ ├── bootstrap-3 │ ├── _master.blade.php │ ├── dashboard.blade.php │ ├── logs.blade.php │ └── show.blade.php │ └── bootstrap-4 │ ├── _master.blade.php │ ├── dashboard.blade.php │ ├── logs.blade.php │ └── show.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── screenshots ├── create_article.png ├── create_category.png ├── edit_user.png ├── manage_permissions.png ├── manage_roles.png ├── notification.png └── view_ticket.png ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ ├── ApiTokenPermissionsTest.php │ ├── AuthenticationTest.php │ ├── BrowserSessionsTest.php │ ├── CreateApiTokenTest.php │ ├── DeleteAccountTest.php │ ├── DeleteApiTokenTest.php │ ├── EmailVerificationTest.php │ ├── ExampleTest.php │ ├── LivewireBootstrapTest.php │ ├── PasswordConfirmationTest.php │ ├── PasswordResetTest.php │ ├── ProfileInformationTest.php │ ├── RegistrationTest.php │ ├── TwoFactorAuthenticationSettingsTest.php │ └── UpdatePasswordTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── webpack.config.js └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/README.md -------------------------------------------------------------------------------- /app/Actions/Fortify/CreateNewUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Actions/Fortify/CreateNewUser.php -------------------------------------------------------------------------------- /app/Actions/Fortify/PasswordValidationRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Actions/Fortify/PasswordValidationRules.php -------------------------------------------------------------------------------- /app/Actions/Fortify/ResetUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Actions/Fortify/ResetUserPassword.php -------------------------------------------------------------------------------- /app/Actions/Fortify/UpdateUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Actions/Fortify/UpdateUserPassword.php -------------------------------------------------------------------------------- /app/Actions/Fortify/UpdateUserProfileInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Actions/Fortify/UpdateUserProfileInformation.php -------------------------------------------------------------------------------- /app/Actions/Jetstream/DeleteUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Actions/Jetstream/DeleteUser.php -------------------------------------------------------------------------------- /app/Console/Commands/UpdatePermissionsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Console/Commands/UpdatePermissionsCommand.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Exports/ProductsExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Exports/ProductsExport.php -------------------------------------------------------------------------------- /app/Exports/UsersExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Exports/UsersExport.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/AdminPanelCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Http/Middleware/AdminPanelCheck.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/UserMobileVerifyCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Http/Middleware/UserMobileVerifyCheck.php -------------------------------------------------------------------------------- /app/Http/Middleware/UserVerifyCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Http/Middleware/UserVerifyCheck.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Jobs/SendMobileTextMessageJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Jobs/SendMobileTextMessageJob.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Content/Article/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/Content/Article/Create.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Content/Article/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/Content/Article/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Content/Article/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/Content/Article/Index.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Content/Carousel/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/Content/Carousel/Create.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Content/Carousel/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/Content/Carousel/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Content/Carousel/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/Content/Carousel/Index.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Content/FAQ/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/Content/FAQ/Create.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Content/FAQ/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/Content/FAQ/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Content/FAQ/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/Content/FAQ/Index.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Dashboard/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/Dashboard/Index.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Setting/Category/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/Setting/Category/Create.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Setting/Category/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/Setting/Category/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Setting/Category/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/Setting/Category/Index.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Setting/Manage/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/Setting/Manage/Index.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Support/Ticket/Archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/Support/Ticket/Archive.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Support/Ticket/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/Support/Ticket/Index.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Support/Ticket/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/Support/Ticket/View.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Ban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Ban.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Create.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Index.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Permission/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Permission/Create.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Permission/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Permission/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Permission/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Permission/Index.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Permissions.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Role/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Role/Create.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Role/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Role/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Role/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Role/Index.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Role/Permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Role/Permissions.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Role/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Role/Users.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Roles.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Team/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Team/Create.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Team/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Team/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Team/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Team/Index.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Team/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Team/Users.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Verify/Check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Verify/Check.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Verify/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Verify/Index.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Wallet/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Admin/User/Wallet/Index.php -------------------------------------------------------------------------------- /app/Livewire/App/Article/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/App/Article/Index.php -------------------------------------------------------------------------------- /app/Livewire/App/Article/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/App/Article/View.php -------------------------------------------------------------------------------- /app/Livewire/App/FAQ/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/App/FAQ/Index.php -------------------------------------------------------------------------------- /app/Livewire/App/Main/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/App/Main/Index.php -------------------------------------------------------------------------------- /app/Livewire/App/Main/TestChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/App/Main/TestChart.php -------------------------------------------------------------------------------- /app/Livewire/App/Notification/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/App/Notification/View.php -------------------------------------------------------------------------------- /app/Livewire/Panel/Dashboard/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Panel/Dashboard/Index.php -------------------------------------------------------------------------------- /app/Livewire/Panel/Support/Ticket/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Panel/Support/Ticket/Create.php -------------------------------------------------------------------------------- /app/Livewire/Panel/Support/Ticket/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Panel/Support/Ticket/Index.php -------------------------------------------------------------------------------- /app/Livewire/Panel/Support/Ticket/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Panel/Support/Ticket/View.php -------------------------------------------------------------------------------- /app/Livewire/Panel/User/Mobile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Panel/User/Mobile.php -------------------------------------------------------------------------------- /app/Livewire/Panel/User/Verify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Panel/User/Verify.php -------------------------------------------------------------------------------- /app/Livewire/Panel/User/Verify/UploadIdCardFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Panel/User/Verify/UploadIdCardFile.php -------------------------------------------------------------------------------- /app/Livewire/Panel/User/Verify/UploadVerifyFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Panel/User/Verify/UploadVerifyFile.php -------------------------------------------------------------------------------- /app/Livewire/Panel/User/Wallet/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Panel/User/Wallet/Create.php -------------------------------------------------------------------------------- /app/Livewire/Panel/User/Wallet/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Livewire/Panel/User/Wallet/Index.php -------------------------------------------------------------------------------- /app/ModelFilters/ArticleFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/ModelFilters/ArticleFilter.php -------------------------------------------------------------------------------- /app/ModelFilters/CarouselFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/ModelFilters/CarouselFilter.php -------------------------------------------------------------------------------- /app/ModelFilters/CategoryFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/ModelFilters/CategoryFilter.php -------------------------------------------------------------------------------- /app/ModelFilters/FrequentlyAskedQuestionFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/ModelFilters/FrequentlyAskedQuestionFilter.php -------------------------------------------------------------------------------- /app/ModelFilters/ProductFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/ModelFilters/ProductFilter.php -------------------------------------------------------------------------------- /app/ModelFilters/TeamFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/ModelFilters/TeamFilter.php -------------------------------------------------------------------------------- /app/ModelFilters/TicketFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/ModelFilters/TicketFilter.php -------------------------------------------------------------------------------- /app/ModelFilters/UserFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/ModelFilters/UserFilter.php -------------------------------------------------------------------------------- /app/Models/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/Article.php -------------------------------------------------------------------------------- /app/Models/Carousel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/Carousel.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/City.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/City.php -------------------------------------------------------------------------------- /app/Models/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/Country.php -------------------------------------------------------------------------------- /app/Models/DatabaseStorageModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/DatabaseStorageModel.php -------------------------------------------------------------------------------- /app/Models/Deposit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/Deposit.php -------------------------------------------------------------------------------- /app/Models/FrequentlyAskedQuestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/FrequentlyAskedQuestion.php -------------------------------------------------------------------------------- /app/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/Product.php -------------------------------------------------------------------------------- /app/Models/ProductMedia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/ProductMedia.php -------------------------------------------------------------------------------- /app/Models/ProductPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/ProductPrice.php -------------------------------------------------------------------------------- /app/Models/Province.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/Province.php -------------------------------------------------------------------------------- /app/Models/Team.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/Team.php -------------------------------------------------------------------------------- /app/Models/Ticket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/Ticket.php -------------------------------------------------------------------------------- /app/Models/TicketFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/TicketFile.php -------------------------------------------------------------------------------- /app/Models/TicketReplay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/TicketReplay.php -------------------------------------------------------------------------------- /app/Models/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/Transaction.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/UserAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/UserAddress.php -------------------------------------------------------------------------------- /app/Models/UserVerify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/UserVerify.php -------------------------------------------------------------------------------- /app/Models/UserVerifyCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/UserVerifyCode.php -------------------------------------------------------------------------------- /app/Models/UserWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/UserWallet.php -------------------------------------------------------------------------------- /app/Models/Wallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/Wallet.php -------------------------------------------------------------------------------- /app/Models/Withdraw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Models/Withdraw.php -------------------------------------------------------------------------------- /app/Notifications/TicketReplied.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Notifications/TicketReplied.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/FortifyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Providers/FortifyServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/JetstreamServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Providers/JetstreamServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Rules/CheckUserVerifyCodeRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Rules/CheckUserVerifyCodeRule.php -------------------------------------------------------------------------------- /app/Utils/DatabaseStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/Utils/DatabaseStorage.php -------------------------------------------------------------------------------- /app/View/Components/AdminLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/View/Components/AdminLayout.php -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /app/View/Components/PanelLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/app/View/Components/PanelLayout.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/composer.json -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/authentication-log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/authentication-log.php -------------------------------------------------------------------------------- /config/bap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/bap.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/database.php -------------------------------------------------------------------------------- /config/eloquentfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/eloquentfilter.php -------------------------------------------------------------------------------- /config/excel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/excel.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/fortify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/fortify.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/jetstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/jetstream.php -------------------------------------------------------------------------------- /config/laravellocalization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/laravellocalization.php -------------------------------------------------------------------------------- /config/livewire-alert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/livewire-alert.php -------------------------------------------------------------------------------- /config/livewire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/livewire.php -------------------------------------------------------------------------------- /config/log-viewer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/log-viewer.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/modules.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/referral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/referral.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/session.php -------------------------------------------------------------------------------- /config/tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/tags.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/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/aliqasemzadeh/bap/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2017_03_04_000000_create_bans_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2017_03_04_000000_create_bans_table.php -------------------------------------------------------------------------------- /database/migrations/2017_09_01_000000_create_authentication_log_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2017_09_01_000000_create_authentication_log_table.php -------------------------------------------------------------------------------- /database/migrations/2018_01_13_052648_create_cart_storage_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2018_01_13_052648_create_cart_storage_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2020_05_21_100000_create_teams_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2020_05_21_100000_create_teams_table.php -------------------------------------------------------------------------------- /database/migrations/2020_05_21_200000_create_team_user_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2020_05_21_200000_create_team_user_table.php -------------------------------------------------------------------------------- /database/migrations/2020_05_21_300000_create_team_invitations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2020_05_21_300000_create_team_invitations_table.php -------------------------------------------------------------------------------- /database/migrations/2021_11_04_092349_create_sessions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2021_11_04_092349_create_sessions_table.php -------------------------------------------------------------------------------- /database/migrations/2021_11_10_154612_create_media_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2021_11_10_154612_create_media_table.php -------------------------------------------------------------------------------- /database/migrations/2021_11_10_163124_create_tag_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2021_11_10_163124_create_tag_tables.php -------------------------------------------------------------------------------- /database/migrations/2021_11_11_133412_add_referral_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2021_11_11_133412_add_referral_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2021_11_11_180838_create_permission_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2021_11_11_180838_create_permission_tables.php -------------------------------------------------------------------------------- /database/migrations/2021_11_17_215228_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2021_11_17_215228_create_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2021_11_18_045302_create_articles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2021_11_18_045302_create_articles_table.php -------------------------------------------------------------------------------- /database/migrations/2021_11_20_174843_create_tickets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2021_11_20_174843_create_tickets_table.php -------------------------------------------------------------------------------- /database/migrations/2021_11_20_175405_create_ticket_replays_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2021_11_20_175405_create_ticket_replays_table.php -------------------------------------------------------------------------------- /database/migrations/2021_11_20_175445_create_ticket_files_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2021_11_20_175445_create_ticket_files_table.php -------------------------------------------------------------------------------- /database/migrations/2021_11_23_084216_create_frequently_asked_questions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2021_11_23_084216_create_frequently_asked_questions_table.php -------------------------------------------------------------------------------- /database/migrations/2021_11_28_145611_create_notifications_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2021_11_28_145611_create_notifications_table.php -------------------------------------------------------------------------------- /database/migrations/2021_12_03_155818_create_user_verifies_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2021_12_03_155818_create_user_verifies_table.php -------------------------------------------------------------------------------- /database/migrations/2022_03_03_053914_create_carousels_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2022_03_03_053914_create_carousels_table.php -------------------------------------------------------------------------------- /database/migrations/2022_04_22_110910_add_teams_fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2022_04_22_110910_add_teams_fields.php -------------------------------------------------------------------------------- /database/migrations/2022_05_26_033100_add_banned_at_column_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2022_05_26_033100_add_banned_at_column_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2022_05_28_164544_create_activity_log_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2022_05_28_164544_create_activity_log_table.php -------------------------------------------------------------------------------- /database/migrations/2022_05_28_164545_add_event_column_to_activity_log_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2022_05_28_164545_add_event_column_to_activity_log_table.php -------------------------------------------------------------------------------- /database/migrations/2022_05_28_164546_add_batch_uuid_column_to_activity_log_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2022_05_28_164546_add_batch_uuid_column_to_activity_log_table.php -------------------------------------------------------------------------------- /database/migrations/2023_07_03_153439_create_user_verify_codes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2023_07_03_153439_create_user_verify_codes_table.php -------------------------------------------------------------------------------- /database/migrations/2023_07_07_091341_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2023_07_07_091341_create_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2023_07_07_112319_create_wallets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2023_07_07_112319_create_wallets_table.php -------------------------------------------------------------------------------- /database/migrations/2023_07_16_071405_create_products_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2023_07_16_071405_create_products_table.php -------------------------------------------------------------------------------- /database/migrations/2023_07_16_071504_create_product_media_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2023_07_16_071504_create_product_media_table.php -------------------------------------------------------------------------------- /database/migrations/2023_07_16_071511_create_product_prices_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2023_07_16_071511_create_product_prices_table.php -------------------------------------------------------------------------------- /database/migrations/2023_07_16_072341_create_user_addresses_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2023_07_16_072341_create_user_addresses_table.php -------------------------------------------------------------------------------- /database/migrations/2023_07_16_103144_create_countries_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2023_07_16_103144_create_countries_table.php -------------------------------------------------------------------------------- /database/migrations/2023_07_16_105225_create_provinces_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2023_07_16_105225_create_provinces_table.php -------------------------------------------------------------------------------- /database/migrations/2023_07_16_105232_create_cities_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2023_07_16_105232_create_cities_table.php -------------------------------------------------------------------------------- /database/migrations/2023_07_22_061400_create_transactions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2023_07_22_061400_create_transactions_table.php -------------------------------------------------------------------------------- /database/migrations/2023_07_22_064355_create_deposits_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2023_07_22_064355_create_deposits_table.php -------------------------------------------------------------------------------- /database/migrations/2023_07_22_064405_create_withdraws_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2023_07_22_064405_create_withdraws_table.php -------------------------------------------------------------------------------- /database/migrations/2023_07_26_135127_create_user_wallets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/migrations/2023_07_26_135127_create_user_wallets_table.php -------------------------------------------------------------------------------- /database/seeders/CategorySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/seeders/CategorySeeder.php -------------------------------------------------------------------------------- /database/seeders/CitySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/seeders/CitySeeder.php -------------------------------------------------------------------------------- /database/seeders/CountrySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/seeders/CountrySeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/ProvinceSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/seeders/ProvinceSeeder.php -------------------------------------------------------------------------------- /database/seeders/RoleAndPermissionSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/seeders/RoleAndPermissionSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/seeders/UserSeeder.php -------------------------------------------------------------------------------- /database/sql/cities.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/sql/cities.sql -------------------------------------------------------------------------------- /database/sql/countries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/sql/countries.sql -------------------------------------------------------------------------------- /database/sql/provinces.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/database/sql/provinces.sql -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/build/assets/app-0dfb6bff.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/build/assets/app-0dfb6bff.css -------------------------------------------------------------------------------- /public/build/assets/app-9c683e9d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/build/assets/app-9c683e9d.js -------------------------------------------------------------------------------- /public/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/build/manifest.json -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/favicon/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/favicon/favicon.ico -------------------------------------------------------------------------------- /public/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /public/favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/favicon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/favicon/site.webmanifest -------------------------------------------------------------------------------- /public/images/id-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/images/id-card.png -------------------------------------------------------------------------------- /public/images/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/images/logo-dark.svg -------------------------------------------------------------------------------- /public/images/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/images/logo-light.svg -------------------------------------------------------------------------------- /public/images/selfie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/images/selfie.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/app.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/js/app.js.LICENSE.txt -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/vendor/livewire/livewire.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/vendor/livewire/livewire.esm.js -------------------------------------------------------------------------------- /public/vendor/livewire/livewire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/vendor/livewire/livewire.js -------------------------------------------------------------------------------- /public/vendor/livewire/livewire.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/vendor/livewire/livewire.js.map -------------------------------------------------------------------------------- /public/vendor/livewire/livewire.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/vendor/livewire/livewire.min.js -------------------------------------------------------------------------------- /public/vendor/livewire/livewire.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/public/vendor/livewire/livewire.min.js.map -------------------------------------------------------------------------------- /public/vendor/livewire/manifest.json: -------------------------------------------------------------------------------- 1 | 2 | {"/livewire.js":"44144c23"} 3 | -------------------------------------------------------------------------------- /resources/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /resources/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /resources/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /resources/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/favicon/browserconfig.xml -------------------------------------------------------------------------------- /resources/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /resources/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /resources/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/favicon/favicon.ico -------------------------------------------------------------------------------- /resources/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /resources/favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/favicon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /resources/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/favicon/site.webmanifest -------------------------------------------------------------------------------- /resources/images/id-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/images/id-card.png -------------------------------------------------------------------------------- /resources/images/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/images/logo-dark.svg -------------------------------------------------------------------------------- /resources/images/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/images/logo-light.svg -------------------------------------------------------------------------------- /resources/images/selfie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/images/selfie.png -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/bap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/en/bap.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/en/permissions.php -------------------------------------------------------------------------------- /resources/lang/en/roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/en/roles.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/lang/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/fa.json -------------------------------------------------------------------------------- /resources/lang/fa/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/fa/auth.php -------------------------------------------------------------------------------- /resources/lang/fa/bap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/fa/bap.php -------------------------------------------------------------------------------- /resources/lang/fa/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/fa/pagination.php -------------------------------------------------------------------------------- /resources/lang/fa/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/fa/passwords.php -------------------------------------------------------------------------------- /resources/lang/fa/validation-inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/fa/validation-inline.php -------------------------------------------------------------------------------- /resources/lang/fa/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/fa/validation.php -------------------------------------------------------------------------------- /resources/lang/vendor/authentication-log/en/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/authentication-log/en/messages.php -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/ar.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/bg.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/de.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/es.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/et.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/fa.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/fr.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/he.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/hu.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/hy.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/id.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/it.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/ja.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/ko.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/ms.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/nl.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/pl.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/pt-BR.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/ro.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/ru.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/si.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/sv.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/th.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/tr.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/uk.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/zh-TW.json -------------------------------------------------------------------------------- /resources/lang/vendor/log-viewer/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/lang/vendor/log-viewer/zh.json -------------------------------------------------------------------------------- /resources/markdown/policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/markdown/policy.md -------------------------------------------------------------------------------- /resources/markdown/terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/markdown/terms.md -------------------------------------------------------------------------------- /resources/scss/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/scss/_custom.scss -------------------------------------------------------------------------------- /resources/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/scss/_variables.scss -------------------------------------------------------------------------------- /resources/scss/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/scss/app.scss -------------------------------------------------------------------------------- /resources/scss/tabler.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/scss/tabler.scss -------------------------------------------------------------------------------- /resources/views/api/api-token-manager.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/api/api-token-manager.blade.php -------------------------------------------------------------------------------- /resources/views/api/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/api/index.blade.php -------------------------------------------------------------------------------- /resources/views/auth/confirm-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/auth/confirm-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/forgot-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/auth/forgot-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/reset-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/auth/reset-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/two-factor-challenge.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/auth/two-factor-challenge.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify-email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/auth/verify-email.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/admin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/layouts/admin.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/custom/admin.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/layouts/custom/app.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/layouts/custom/panel.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/layouts/global/favicon.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/layouts/global/favicon.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/global/foot-js.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/layouts/global/foot-js.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/global/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/layouts/global/footer.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/global/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/layouts/global/header.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/global/user-navbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/layouts/global/user-navbar.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/layouts/guest.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/panel.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/layouts/panel.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/content/article/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/content/article/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/content/article/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/content/article/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/content/article/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/content/article/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/content/carousel/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/content/carousel/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/content/carousel/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/content/carousel/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/content/carousel/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/content/carousel/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/content/f-a-q/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/content/f-a-q/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/content/f-a-q/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/content/f-a-q/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/content/f-a-q/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/content/f-a-q/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/dashboard/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/dashboard/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/setting/category/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/setting/category/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/setting/category/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/setting/category/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/setting/category/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/setting/category/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/setting/manage/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/setting/manage/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/support/ticket/archive.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/support/ticket/archive.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/support/ticket/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/support/ticket/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/support/ticket/view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/support/ticket/view.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/ban.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/ban.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/permission/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/permission/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/permission/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/permission/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/permission/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/permission/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/permissions.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/permissions.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/role/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/role/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/role/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/role/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/role/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/role/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/role/permissions.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/role/permissions.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/role/users.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/role/users.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/roles.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/roles.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/team/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/team/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/team/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/team/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/team/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/team/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/team/users.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/team/users.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/verify/check.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/verify/check.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/verify/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/verify/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/wallet/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/admin/user/wallet/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/app/article/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/app/article/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/app/article/view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/app/article/view.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/app/f-a-q/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/app/f-a-q/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/app/main/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/app/main/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/app/main/test-chart.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/app/main/test-chart.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/app/notification/view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/app/notification/view.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/panel/dashboard/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/panel/dashboard/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/panel/support/ticket/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/panel/support/ticket/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/panel/support/ticket/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/panel/support/ticket/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/panel/support/ticket/view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/panel/support/ticket/view.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/panel/user/mobile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/panel/user/mobile.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/panel/user/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/panel/user/verify.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/panel/user/verify/upload-id-card-file.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/panel/user/verify/upload-id-card-file.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/panel/user/verify/upload-verify-file.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/panel/user/verify/upload-verify-file.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/panel/user/wallet/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/panel/user/wallet/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/panel/user/wallet/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/livewire/panel/user/wallet/index.blade.php -------------------------------------------------------------------------------- /resources/views/profile/delete-user-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/profile/delete-user-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/logout-other-browser-sessions-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/profile/logout-other-browser-sessions-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/profile/show.blade.php -------------------------------------------------------------------------------- /resources/views/profile/two-factor-authentication-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/profile/two-factor-authentication-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/update-password-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/profile/update-password-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/update-profile-information-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/profile/update-profile-information-form.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/authentication-log/emails/new.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/authentication-log/emails/new.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/action-message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/action-message.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/action-section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/action-section.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/application-logo.blade.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/application-mark.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/application-mark.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/authentication-card-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/authentication-card-logo.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/authentication-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/authentication-card.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/banner.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/banner.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/checkbox.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/checkbox.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/confirmation-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/confirmation-modal.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/confirms-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/confirms-password.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/danger-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/danger-button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/dialog-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/dialog-modal.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/dropdown-link.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/form-section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/form-section.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/input-error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/input-error.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/input.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/label.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/modal.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/secondary-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/secondary-button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/section-border.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/section-border.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/section-title.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/section-title.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/switchable-team.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/switchable-team.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/validation-errors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/validation-errors.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/components/welcome.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/mail/team-invitation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/jetstream/mail/team-invitation.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/log-viewer/bootstrap-3/_master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/log-viewer/bootstrap-3/_master.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/log-viewer/bootstrap-3/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/log-viewer/bootstrap-3/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/log-viewer/bootstrap-3/logs.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/log-viewer/bootstrap-3/logs.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/log-viewer/bootstrap-3/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/log-viewer/bootstrap-3/show.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/log-viewer/bootstrap-4/_master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/log-viewer/bootstrap-4/_master.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/log-viewer/bootstrap-4/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/log-viewer/bootstrap-4/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/log-viewer/bootstrap-4/logs.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/log-viewer/bootstrap-4/logs.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/log-viewer/bootstrap-4/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/resources/views/vendor/log-viewer/bootstrap-4/show.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/routes/web.php -------------------------------------------------------------------------------- /screenshots/create_article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/screenshots/create_article.png -------------------------------------------------------------------------------- /screenshots/create_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/screenshots/create_category.png -------------------------------------------------------------------------------- /screenshots/edit_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/screenshots/edit_user.png -------------------------------------------------------------------------------- /screenshots/manage_permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/screenshots/manage_permissions.png -------------------------------------------------------------------------------- /screenshots/manage_roles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/screenshots/manage_roles.png -------------------------------------------------------------------------------- /screenshots/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/screenshots/notification.png -------------------------------------------------------------------------------- /screenshots/view_ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/screenshots/view_ticket.png -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/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/aliqasemzadeh/bap/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ApiTokenPermissionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/tests/Feature/ApiTokenPermissionsTest.php -------------------------------------------------------------------------------- /tests/Feature/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/tests/Feature/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/BrowserSessionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/tests/Feature/BrowserSessionsTest.php -------------------------------------------------------------------------------- /tests/Feature/CreateApiTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/tests/Feature/CreateApiTokenTest.php -------------------------------------------------------------------------------- /tests/Feature/DeleteAccountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/tests/Feature/DeleteAccountTest.php -------------------------------------------------------------------------------- /tests/Feature/DeleteApiTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/tests/Feature/DeleteApiTokenTest.php -------------------------------------------------------------------------------- /tests/Feature/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/tests/Feature/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/LivewireBootstrapTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/tests/Feature/LivewireBootstrapTest.php -------------------------------------------------------------------------------- /tests/Feature/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/tests/Feature/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/tests/Feature/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/ProfileInformationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/tests/Feature/ProfileInformationTest.php -------------------------------------------------------------------------------- /tests/Feature/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/tests/Feature/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/TwoFactorAuthenticationSettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/tests/Feature/TwoFactorAuthenticationSettingsTest.php -------------------------------------------------------------------------------- /tests/Feature/UpdatePasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/tests/Feature/UpdatePasswordTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliqasemzadeh/bap/HEAD/webpack.mix.js --------------------------------------------------------------------------------