├── .editorconfig ├── .env ├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Exports │ └── UsersExport.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── Controller.php │ │ ├── DashboardController.php │ │ ├── ExportController.php │ │ ├── LangController.php │ │ ├── LogController.php │ │ ├── NotificationController.php │ │ ├── PermissionController.php │ │ ├── ProfileController.php │ │ ├── RoleController.php │ │ └── UsersController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── HandleInertiaRequests.php │ │ ├── LanguageManager.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── ReadOnlyMiddleware.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── SetLocale.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── Auth │ │ └── LoginRequest.php │ │ ├── ProfileUpdateRequest.php │ │ ├── StorePermissionRequest.php │ │ ├── StoreRoleRequest.php │ │ ├── StoreUserRequest.php │ │ ├── UpdatePermissionRequest.php │ │ ├── UpdateRoleRequest.php │ │ └── UpdateUserRequest.php ├── Models │ ├── Log.php │ ├── Notifiaction.php │ └── User.php ├── Notifications │ └── ExportNotification.php ├── Observers │ ├── PermissionObserver.php │ ├── RoleObserver.php │ └── UserObserver.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── permission.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2024_10_14_115040_add_is_active_to_users.php │ ├── 2024_10_14_125552_create_permission_tables.php │ ├── 2024_10_14_164522_create_logs_table.php │ ├── 2024_10_16_133211_create_jobs_table.php │ └── 2024_10_16_140842_notifications.php └── seeders │ ├── DatabaseSeeder.php │ └── UserRolePermissionSeeder.php ├── jsconfig.json ├── lang ├── ar │ ├── messages.php │ └── rules.php └── en │ ├── auth.php │ ├── messages.php │ ├── pagination.php │ ├── passwords.php │ ├── rules.php │ └── validation.php ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── dashboard-assets │ ├── css │ │ ├── style-ltr.css │ │ ├── style-rtl.css │ │ └── style.css │ ├── img │ │ ├── 403.svg │ │ ├── 404.svg │ │ ├── app_logo - Copy.webp │ │ ├── app_logo.heic │ │ ├── app_logo.jpg │ │ ├── app_logo.webp │ │ ├── apple-touch-icon.png │ │ ├── card.jpg │ │ ├── favicon.png │ │ ├── language_icon.png │ │ ├── logo.png │ │ ├── messages-1.jpg │ │ ├── messages-2.jpg │ │ ├── messages-3.jpg │ │ ├── news-1.jpg │ │ ├── news-2.jpg │ │ ├── news-3.jpg │ │ ├── news-4.jpg │ │ ├── news-5.jpg │ │ ├── not-found.svg │ │ ├── product-1.jpg │ │ ├── product-2.jpg │ │ ├── product-3.jpg │ │ ├── product-4.jpg │ │ ├── product-5.jpg │ │ ├── profile-img.jpg │ │ ├── readme_main_img.png │ │ ├── slides-1.jpg │ │ ├── slides-2.jpg │ │ └── slides-3.jpg │ ├── js │ │ └── main.js │ ├── scss │ │ ├── Readme.txt │ │ └── forms │ │ │ └── _form-control.scss │ └── vendor │ │ ├── apexcharts │ │ ├── apexcharts.amd.js │ │ ├── apexcharts.common.js │ │ ├── apexcharts.css │ │ ├── apexcharts.esm.js │ │ ├── apexcharts.js │ │ ├── apexcharts.min.js │ │ └── locales │ │ │ ├── ar.json │ │ │ ├── be-cyrl.json │ │ │ ├── be-latn.json │ │ │ ├── ca.json │ │ │ ├── cs.json │ │ │ ├── da.json │ │ │ ├── de.json │ │ │ ├── el.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── et.json │ │ │ ├── fa.json │ │ │ ├── fi.json │ │ │ ├── fr.json │ │ │ ├── he.json │ │ │ ├── hi.json │ │ │ ├── hr.json │ │ │ ├── hu.json │ │ │ ├── hy.json │ │ │ ├── id.json │ │ │ ├── it.json │ │ │ ├── ja.json │ │ │ ├── ka.json │ │ │ ├── ko.json │ │ │ ├── lt.json │ │ │ ├── lv.json │ │ │ ├── ms.json │ │ │ ├── nb.json │ │ │ ├── nl.json │ │ │ ├── pl.json │ │ │ ├── pt-br.json │ │ │ ├── pt.json │ │ │ ├── rs.json │ │ │ ├── ru.json │ │ │ ├── se.json │ │ │ ├── sk.json │ │ │ ├── sl.json │ │ │ ├── sq.json │ │ │ ├── th.json │ │ │ ├── tr.json │ │ │ ├── ua.json │ │ │ ├── vi.json │ │ │ ├── zh-cn.json │ │ │ └── zh-tw.json │ │ ├── bootstrap-icons │ │ ├── bootstrap-icons.css │ │ ├── bootstrap-icons.json │ │ ├── bootstrap-icons.min.css │ │ ├── bootstrap-icons.scss │ │ └── fonts │ │ │ ├── bootstrap-icons.woff │ │ │ └── bootstrap-icons.woff2 │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-grid.rtl.css │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ ├── bootstrap-utilities.css │ │ │ ├── bootstrap-utilities.css.map │ │ │ ├── bootstrap-utilities.min.css │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.rtl.css │ │ │ ├── bootstrap.rtl.css.map │ │ │ ├── bootstrap.rtl.min.css │ │ │ ├── bootstrap.rtl.min.css.map │ │ │ └── prb.txt │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.esm.js │ │ │ ├── bootstrap.esm.js.map │ │ │ ├── bootstrap.esm.min.js │ │ │ ├── bootstrap.esm.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── boxicons │ │ ├── css │ │ │ ├── animations.css │ │ │ ├── boxicons.css │ │ │ ├── boxicons.min.css │ │ │ └── transformations.css │ │ └── fonts │ │ │ ├── boxicons.eot │ │ │ ├── boxicons.svg │ │ │ ├── boxicons.ttf │ │ │ ├── boxicons.woff │ │ │ └── boxicons.woff2 │ │ ├── chart.js │ │ ├── chart.cjs │ │ ├── chart.cjs.map │ │ ├── chart.js │ │ ├── chart.js.map │ │ ├── chart.umd.js │ │ ├── chart.umd.js.map │ │ ├── chunks │ │ │ ├── helpers.segment.cjs │ │ │ ├── helpers.segment.cjs.map │ │ │ ├── helpers.segment.js │ │ │ └── helpers.segment.js.map │ │ ├── controllers │ │ │ ├── controller.bar.d.ts │ │ │ ├── controller.bubble.d.ts │ │ │ ├── controller.doughnut.d.ts │ │ │ ├── controller.line.d.ts │ │ │ ├── controller.pie.d.ts │ │ │ ├── controller.polarArea.d.ts │ │ │ ├── controller.radar.d.ts │ │ │ ├── controller.scatter.d.ts │ │ │ └── index.d.ts │ │ ├── core │ │ │ ├── core.adapters.d.ts │ │ │ ├── core.animation.d.ts │ │ │ ├── core.animations.d.ts │ │ │ ├── core.animations.defaults.d.ts │ │ │ ├── core.animator.d.ts │ │ │ ├── core.config.d.ts │ │ │ ├── core.controller.d.ts │ │ │ ├── core.datasetController.d.ts │ │ │ ├── core.defaults.d.ts │ │ │ ├── core.element.d.ts │ │ │ ├── core.interaction.d.ts │ │ │ ├── core.layouts.d.ts │ │ │ ├── core.layouts.defaults.d.ts │ │ │ ├── core.plugins.d.ts │ │ │ ├── core.registry.d.ts │ │ │ ├── core.scale.autoskip.d.ts │ │ │ ├── core.scale.d.ts │ │ │ ├── core.scale.defaults.d.ts │ │ │ ├── core.ticks.d.ts │ │ │ ├── core.typedRegistry.d.ts │ │ │ └── index.d.ts │ │ ├── elements │ │ │ ├── element.arc.d.ts │ │ │ ├── element.bar.d.ts │ │ │ ├── element.line.d.ts │ │ │ ├── element.point.d.ts │ │ │ └── index.d.ts │ │ ├── helpers.cjs │ │ ├── helpers.cjs.map │ │ ├── helpers.js │ │ ├── helpers.js.map │ │ ├── helpers │ │ │ ├── helpers.canvas.d.ts │ │ │ ├── helpers.collection.d.ts │ │ │ ├── helpers.color.d.ts │ │ │ ├── helpers.config.d.ts │ │ │ ├── helpers.config.types.d.ts │ │ │ ├── helpers.core.d.ts │ │ │ ├── helpers.curve.d.ts │ │ │ ├── helpers.dom.d.ts │ │ │ ├── helpers.easing.d.ts │ │ │ ├── helpers.extras.d.ts │ │ │ ├── helpers.interpolation.d.ts │ │ │ ├── helpers.intl.d.ts │ │ │ ├── helpers.math.d.ts │ │ │ ├── helpers.options.d.ts │ │ │ ├── helpers.rtl.d.ts │ │ │ ├── helpers.segment.d.ts │ │ │ └── index.d.ts │ │ ├── index.d.ts │ │ ├── index.umd.d.ts │ │ ├── platform │ │ │ ├── index.d.ts │ │ │ ├── platform.base.d.ts │ │ │ ├── platform.basic.d.ts │ │ │ └── platform.dom.d.ts │ │ ├── plugins │ │ │ ├── index.d.ts │ │ │ ├── plugin.colors.d.ts │ │ │ ├── plugin.decimation.d.ts │ │ │ ├── plugin.filler │ │ │ │ ├── filler.drawing.d.ts │ │ │ │ ├── filler.helper.d.ts │ │ │ │ ├── filler.options.d.ts │ │ │ │ ├── filler.segment.d.ts │ │ │ │ ├── filler.target.d.ts │ │ │ │ ├── filler.target.stack.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ └── simpleArc.d.ts │ │ │ ├── plugin.legend.d.ts │ │ │ ├── plugin.subtitle.d.ts │ │ │ ├── plugin.title.d.ts │ │ │ └── plugin.tooltip.d.ts │ │ ├── scales │ │ │ ├── index.d.ts │ │ │ ├── scale.category.d.ts │ │ │ ├── scale.linear.d.ts │ │ │ ├── scale.linearbase.d.ts │ │ │ ├── scale.logarithmic.d.ts │ │ │ ├── scale.radialLinear.d.ts │ │ │ ├── scale.time.d.ts │ │ │ └── scale.timeseries.d.ts │ │ ├── types.d.ts │ │ └── types │ │ │ ├── animation.d.ts │ │ │ ├── basic.d.ts │ │ │ ├── color.d.ts │ │ │ ├── geometric.d.ts │ │ │ ├── index.d.ts │ │ │ ├── layout.d.ts │ │ │ └── utils.d.ts │ │ ├── echarts │ │ ├── echarts.common.js │ │ ├── echarts.common.js.map │ │ ├── echarts.common.min.js │ │ ├── echarts.esm.js │ │ ├── echarts.esm.js.map │ │ ├── echarts.esm.min.js │ │ ├── echarts.esm.min.mjs │ │ ├── echarts.esm.mjs │ │ ├── echarts.esm.mjs.map │ │ ├── echarts.js │ │ ├── echarts.js.map │ │ ├── echarts.min.js │ │ ├── echarts.simple.js │ │ ├── echarts.simple.js.map │ │ ├── echarts.simple.min.js │ │ ├── extension │ │ │ ├── bmap.js │ │ │ ├── bmap.js.map │ │ │ ├── bmap.min.js │ │ │ ├── dataTool.js │ │ │ ├── dataTool.js.map │ │ │ └── dataTool.min.js │ │ └── package.json │ │ ├── php-email-form │ │ └── validate.js │ │ ├── quill │ │ ├── quill.bubble.css │ │ ├── quill.bubble.css.map │ │ ├── quill.core.css │ │ ├── quill.core.css.map │ │ ├── quill.core.js │ │ ├── quill.core.js.LICENSE.txt │ │ ├── quill.core.js.map │ │ ├── quill.js │ │ ├── quill.js.LICENSE.txt │ │ ├── quill.js.map │ │ ├── quill.snow.css │ │ └── quill.snow.css.map │ │ ├── remixicon │ │ ├── remixicon.css │ │ ├── remixicon.eot │ │ ├── remixicon.glyph.json │ │ ├── remixicon.less │ │ ├── remixicon.svg │ │ ├── remixicon.symbol.svg │ │ ├── remixicon.ttf │ │ ├── remixicon.woff │ │ └── remixicon.woff2 │ │ ├── simple-datatables │ │ ├── simple-datatables.js │ │ └── style.css │ │ └── tinymce │ │ ├── README.md │ │ ├── bower.json │ │ ├── composer.json │ │ ├── icons │ │ └── default │ │ │ ├── icons.js │ │ │ ├── icons.min.js │ │ │ └── index.js │ │ ├── license.md │ │ ├── models │ │ └── dom │ │ │ ├── index.js │ │ │ ├── model.js │ │ │ └── model.min.js │ │ ├── package.json │ │ ├── plugins │ │ ├── accordion │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── advlist │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── code │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── codesample │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── index.js │ │ │ ├── js │ │ │ │ ├── emojiimages.js │ │ │ │ ├── emojiimages.min.js │ │ │ │ ├── emojis.js │ │ │ │ └── emojis.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── help │ │ │ ├── index.js │ │ │ ├── js │ │ │ │ └── i18n │ │ │ │ │ └── keynav │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg_BG.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr_FR.js │ │ │ │ │ ├── he_IL.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu_HU.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── kk.js │ │ │ │ │ ├── ko_KR.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb_NO.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt_BR.js │ │ │ │ │ ├── pt_PT.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl_SI.js │ │ │ │ │ ├── sv_SE.js │ │ │ │ │ ├── th_TH.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh_CN.js │ │ │ │ │ └── zh_TW.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── image │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── link │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── media │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── quickbars │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── save │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── table │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── skins │ │ ├── content │ │ │ ├── dark │ │ │ │ ├── content.css │ │ │ │ ├── content.js │ │ │ │ └── content.min.css │ │ │ ├── default │ │ │ │ ├── content.css │ │ │ │ ├── content.js │ │ │ │ └── content.min.css │ │ │ ├── document │ │ │ │ ├── content.css │ │ │ │ ├── content.js │ │ │ │ └── content.min.css │ │ │ ├── tinymce-5-dark │ │ │ │ ├── content.css │ │ │ │ ├── content.js │ │ │ │ └── content.min.css │ │ │ ├── tinymce-5 │ │ │ │ ├── content.css │ │ │ │ ├── content.js │ │ │ │ └── content.min.css │ │ │ └── writer │ │ │ │ ├── content.css │ │ │ │ ├── content.js │ │ │ │ └── content.min.css │ │ └── ui │ │ │ ├── oxide-dark │ │ │ ├── content.css │ │ │ ├── content.inline.css │ │ │ ├── content.inline.js │ │ │ ├── content.inline.min.css │ │ │ ├── content.js │ │ │ ├── content.min.css │ │ │ ├── skin.css │ │ │ ├── skin.js │ │ │ ├── skin.min.css │ │ │ ├── skin.shadowdom.css │ │ │ ├── skin.shadowdom.js │ │ │ └── skin.shadowdom.min.css │ │ │ ├── oxide │ │ │ ├── content.css │ │ │ ├── content.inline.css │ │ │ ├── content.inline.js │ │ │ ├── content.inline.min.css │ │ │ ├── content.js │ │ │ ├── content.min.css │ │ │ ├── skin.css │ │ │ ├── skin.js │ │ │ ├── skin.min.css │ │ │ ├── skin.shadowdom.css │ │ │ ├── skin.shadowdom.js │ │ │ └── skin.shadowdom.min.css │ │ │ ├── tinymce-5-dark │ │ │ ├── content.css │ │ │ ├── content.inline.css │ │ │ ├── content.inline.js │ │ │ ├── content.inline.min.css │ │ │ ├── content.js │ │ │ ├── content.min.css │ │ │ ├── skin.css │ │ │ ├── skin.js │ │ │ ├── skin.min.css │ │ │ ├── skin.shadowdom.css │ │ │ ├── skin.shadowdom.js │ │ │ └── skin.shadowdom.min.css │ │ │ └── tinymce-5 │ │ │ ├── content.css │ │ │ ├── content.inline.css │ │ │ ├── content.inline.js │ │ │ ├── content.inline.min.css │ │ │ ├── content.js │ │ │ ├── content.min.css │ │ │ ├── skin.css │ │ │ ├── skin.js │ │ │ ├── skin.min.css │ │ │ ├── skin.shadowdom.css │ │ │ ├── skin.shadowdom.js │ │ │ └── skin.shadowdom.min.css │ │ ├── themes │ │ └── silver │ │ │ ├── index.js │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ ├── tinymce.d.ts │ │ ├── tinymce.js │ │ └── tinymce.min.js ├── favicon.ico ├── index.php ├── reviews.png ├── robots.txt └── screenshots │ ├── PREVIEW.gif │ ├── RTL.PNG │ ├── dashabord.PNG │ ├── edit_user.PNG │ ├── login.PNG │ ├── logs.PNG │ ├── notifiaction.PNG │ ├── permissions.PNG │ ├── profile.PNG │ ├── roles.PNG │ ├── roles_permissions.PNG │ ├── sweet_alert.PNG │ ├── undo_action.PNG │ └── users.PNG ├── resources ├── css │ └── app.css ├── js │ ├── Components │ │ ├── ApplicationLogo.vue │ │ ├── Chart.vue │ │ ├── Checkbox.vue │ │ ├── DangerButton.vue │ │ ├── DeleteButton.vue │ │ ├── Dropdown.vue │ │ ├── DropdownLink.vue │ │ ├── EditButton.vue │ │ ├── InputError.vue │ │ ├── InputLabel.vue │ │ ├── LogsChart.vue │ │ ├── Modal.vue │ │ ├── NavLink.vue │ │ ├── Pagination.vue │ │ ├── PrimaryButton.vue │ │ ├── ResponsiveNavLink.vue │ │ ├── SecondaryButton.vue │ │ ├── SideBar.vue │ │ └── TextInput.vue │ ├── Layouts │ │ ├── AuthenticatedLayout.vue │ │ └── GuestLayout.vue │ ├── Pages │ │ ├── Auth │ │ │ ├── ConfirmPassword.vue │ │ │ ├── ForgotPassword.vue │ │ │ ├── Login.vue │ │ │ ├── Register.vue │ │ │ ├── ResetPassword.vue │ │ │ └── VerifyEmail.vue │ │ ├── Dashboard.vue │ │ ├── Dashboard_old.vue │ │ ├── Errors │ │ │ ├── 403.vue │ │ │ └── 404.vue │ │ ├── Logs │ │ │ ├── index.vue │ │ │ └── view.vue │ │ ├── Notification │ │ │ └── index.vue │ │ ├── Profile │ │ │ ├── Edit.vue │ │ │ └── Partials │ │ │ │ ├── DeleteUserForm.vue │ │ │ │ ├── UpdatePasswordForm.vue │ │ │ │ └── UpdateProfileInformationForm.vue │ │ ├── Users │ │ │ ├── Create.vue │ │ │ ├── Edit.vue │ │ │ └── index.vue │ │ ├── Welcome.vue │ │ └── roles-permissions │ │ │ ├── Permissions │ │ │ ├── Create.vue │ │ │ ├── Edit.vue │ │ │ └── index.vue │ │ │ └── Roles │ │ │ ├── Add-permissions.vue │ │ │ ├── Create.vue │ │ │ ├── Edit.vue │ │ │ └── index.vue │ ├── app.js │ └── bootstrap.js └── views │ ├── app.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── auth.php ├── channels.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ ├── PasswordUpdateTest.php │ │ └── RegistrationTest.php │ ├── ExampleTest.php │ └── ProfileTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/.env -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Exports/UsersExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Exports/UsersExport.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthenticatedSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Controllers/Auth/AuthenticatedSessionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmablePasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Controllers/Auth/ConfirmablePasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationNotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Controllers/Auth/EmailVerificationNotificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationPromptController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Controllers/Auth/EmailVerificationPromptController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/NewPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Controllers/Auth/NewPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Controllers/Auth/PasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordResetLinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Controllers/Auth/PasswordResetLinkController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisteredUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Controllers/Auth/RegisteredUserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Controllers/DashboardController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ExportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Controllers/ExportController.php -------------------------------------------------------------------------------- /app/Http/Controllers/LangController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Controllers/LangController.php -------------------------------------------------------------------------------- /app/Http/Controllers/LogController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Controllers/LogController.php -------------------------------------------------------------------------------- /app/Http/Controllers/NotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Controllers/NotificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PermissionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Controllers/PermissionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Controllers/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RoleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Controllers/RoleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Controllers/UsersController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/HandleInertiaRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Middleware/HandleInertiaRequests.php -------------------------------------------------------------------------------- /app/Http/Middleware/LanguageManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Middleware/LanguageManager.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/ReadOnlyMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Middleware/ReadOnlyMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/SetLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Middleware/SetLocale.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ProfileUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Requests/ProfileUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StorePermissionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Requests/StorePermissionRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreRoleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Requests/StoreRoleRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreUserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Requests/StoreUserRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdatePermissionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Requests/UpdatePermissionRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateRoleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Requests/UpdateRoleRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateUserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Http/Requests/UpdateUserRequest.php -------------------------------------------------------------------------------- /app/Models/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Models/Log.php -------------------------------------------------------------------------------- /app/Models/Notifiaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Models/Notifiaction.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Notifications/ExportNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Notifications/ExportNotification.php -------------------------------------------------------------------------------- /app/Observers/PermissionObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Observers/PermissionObserver.php -------------------------------------------------------------------------------- /app/Observers/RoleObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Observers/RoleObserver.php -------------------------------------------------------------------------------- /app/Observers/UserObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Observers/UserObserver.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/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/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_14_115040_add_is_active_to_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/database/migrations/2024_10_14_115040_add_is_active_to_users.php -------------------------------------------------------------------------------- /database/migrations/2024_10_14_125552_create_permission_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/database/migrations/2024_10_14_125552_create_permission_tables.php -------------------------------------------------------------------------------- /database/migrations/2024_10_14_164522_create_logs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/database/migrations/2024_10_14_164522_create_logs_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_16_133211_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/database/migrations/2024_10_16_133211_create_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_16_140842_notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/database/migrations/2024_10_16_140842_notifications.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserRolePermissionSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/database/seeders/UserRolePermissionSeeder.php -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lang/ar/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/lang/ar/messages.php -------------------------------------------------------------------------------- /lang/ar/rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/lang/ar/rules.php -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/lang/en/messages.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/lang/en/rules.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/dashboard-assets/css/style-ltr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/css/style-ltr.css -------------------------------------------------------------------------------- /public/dashboard-assets/css/style-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/css/style-rtl.css -------------------------------------------------------------------------------- /public/dashboard-assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/css/style.css -------------------------------------------------------------------------------- /public/dashboard-assets/img/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/403.svg -------------------------------------------------------------------------------- /public/dashboard-assets/img/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/404.svg -------------------------------------------------------------------------------- /public/dashboard-assets/img/app_logo - Copy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/app_logo - Copy.webp -------------------------------------------------------------------------------- /public/dashboard-assets/img/app_logo.heic: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/dashboard-assets/img/app_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/app_logo.jpg -------------------------------------------------------------------------------- /public/dashboard-assets/img/app_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/app_logo.webp -------------------------------------------------------------------------------- /public/dashboard-assets/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/apple-touch-icon.png -------------------------------------------------------------------------------- /public/dashboard-assets/img/card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/card.jpg -------------------------------------------------------------------------------- /public/dashboard-assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/favicon.png -------------------------------------------------------------------------------- /public/dashboard-assets/img/language_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/language_icon.png -------------------------------------------------------------------------------- /public/dashboard-assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/logo.png -------------------------------------------------------------------------------- /public/dashboard-assets/img/messages-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/messages-1.jpg -------------------------------------------------------------------------------- /public/dashboard-assets/img/messages-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/messages-2.jpg -------------------------------------------------------------------------------- /public/dashboard-assets/img/messages-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/messages-3.jpg -------------------------------------------------------------------------------- /public/dashboard-assets/img/news-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/news-1.jpg -------------------------------------------------------------------------------- /public/dashboard-assets/img/news-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/news-2.jpg -------------------------------------------------------------------------------- /public/dashboard-assets/img/news-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/news-3.jpg -------------------------------------------------------------------------------- /public/dashboard-assets/img/news-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/news-4.jpg -------------------------------------------------------------------------------- /public/dashboard-assets/img/news-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/news-5.jpg -------------------------------------------------------------------------------- /public/dashboard-assets/img/not-found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/not-found.svg -------------------------------------------------------------------------------- /public/dashboard-assets/img/product-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/product-1.jpg -------------------------------------------------------------------------------- /public/dashboard-assets/img/product-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/product-2.jpg -------------------------------------------------------------------------------- /public/dashboard-assets/img/product-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/product-3.jpg -------------------------------------------------------------------------------- /public/dashboard-assets/img/product-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/product-4.jpg -------------------------------------------------------------------------------- /public/dashboard-assets/img/product-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/product-5.jpg -------------------------------------------------------------------------------- /public/dashboard-assets/img/profile-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/profile-img.jpg -------------------------------------------------------------------------------- /public/dashboard-assets/img/readme_main_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/readme_main_img.png -------------------------------------------------------------------------------- /public/dashboard-assets/img/slides-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/slides-1.jpg -------------------------------------------------------------------------------- /public/dashboard-assets/img/slides-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/slides-2.jpg -------------------------------------------------------------------------------- /public/dashboard-assets/img/slides-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/img/slides-3.jpg -------------------------------------------------------------------------------- /public/dashboard-assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/js/main.js -------------------------------------------------------------------------------- /public/dashboard-assets/scss/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/scss/Readme.txt -------------------------------------------------------------------------------- /public/dashboard-assets/scss/forms/_form-control.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/scss/forms/_form-control.scss -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/apexcharts.amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/apexcharts.amd.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/apexcharts.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/apexcharts.common.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/apexcharts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/apexcharts.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/apexcharts.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/apexcharts.esm.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/apexcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/apexcharts.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/apexcharts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/apexcharts.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/ar.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/be-cyrl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/be-cyrl.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/be-latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/be-latn.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/ca.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/cs.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/da.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/de.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/el.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/en.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/es.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/et.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/fa.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/fi.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/fr.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/he.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/hi.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/hr.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/hu.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/hy.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/id.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/it.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/ja.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/ka.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/ko.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/lt.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/lv.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/ms.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/nb.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/nl.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/pl.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/pt-br.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/pt.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/rs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/rs.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/ru.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/se.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/se.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/sk.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/sl.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/sq.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/th.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/tr.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/ua.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/vi.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/zh-cn.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/apexcharts/locales/zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/apexcharts/locales/zh-tw.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap-icons/bootstrap-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap-icons/bootstrap-icons.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap-icons/bootstrap-icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap-icons/bootstrap-icons.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap-icons/bootstrap-icons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap-icons/bootstrap-icons.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap-icons/bootstrap-icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap-icons/bootstrap-icons.scss -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/css/prb.txt: -------------------------------------------------------------------------------- 1 | prb 2 | -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/js/bootstrap.esm.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/boxicons/css/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/boxicons/css/animations.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/boxicons/css/boxicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/boxicons/css/boxicons.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/boxicons/css/boxicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/boxicons/css/boxicons.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/boxicons/css/transformations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/boxicons/css/transformations.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/boxicons/fonts/boxicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/boxicons/fonts/boxicons.eot -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/boxicons/fonts/boxicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/boxicons/fonts/boxicons.svg -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/boxicons/fonts/boxicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/boxicons/fonts/boxicons.ttf -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/boxicons/fonts/boxicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/boxicons/fonts/boxicons.woff -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/boxicons/fonts/boxicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/boxicons/fonts/boxicons.woff2 -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/chart.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/chart.cjs -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/chart.cjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/chart.cjs.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/chart.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/chart.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/chart.js.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/chart.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/chart.umd.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/chart.umd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/chart.umd.js.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/chunks/helpers.segment.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/chunks/helpers.segment.cjs -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/chunks/helpers.segment.cjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/chunks/helpers.segment.cjs.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/chunks/helpers.segment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/chunks/helpers.segment.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/chunks/helpers.segment.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/chunks/helpers.segment.js.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/controllers/controller.bar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/controllers/controller.bar.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/controllers/controller.bubble.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/controllers/controller.bubble.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/controllers/controller.doughnut.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/controllers/controller.doughnut.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/controllers/controller.line.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/controllers/controller.line.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/controllers/controller.pie.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/controllers/controller.pie.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/controllers/controller.polarArea.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/controllers/controller.polarArea.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/controllers/controller.radar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/controllers/controller.radar.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/controllers/controller.scatter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/controllers/controller.scatter.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/controllers/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/controllers/index.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.adapters.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.adapters.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.animation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.animation.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.animations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.animations.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.animations.defaults.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.animations.defaults.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.animator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.animator.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.config.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.controller.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.controller.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.datasetController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.datasetController.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.defaults.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.defaults.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.element.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.element.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.interaction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.interaction.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.layouts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.layouts.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.layouts.defaults.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.layouts.defaults.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.plugins.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.plugins.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.registry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.registry.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.scale.autoskip.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.scale.autoskip.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.scale.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.scale.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.scale.defaults.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.scale.defaults.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.ticks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.ticks.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/core.typedRegistry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/core.typedRegistry.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/core/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/core/index.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/elements/element.arc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/elements/element.arc.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/elements/element.bar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/elements/element.bar.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/elements/element.line.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/elements/element.line.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/elements/element.point.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/elements/element.point.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/elements/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/elements/index.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers.cjs -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers.cjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers.cjs.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers.js.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers/helpers.canvas.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers/helpers.canvas.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers/helpers.collection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers/helpers.collection.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers/helpers.color.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers/helpers.color.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers/helpers.config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers/helpers.config.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers/helpers.config.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers/helpers.config.types.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers/helpers.core.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers/helpers.core.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers/helpers.curve.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers/helpers.curve.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers/helpers.dom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers/helpers.dom.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers/helpers.easing.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers/helpers.easing.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers/helpers.extras.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers/helpers.extras.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers/helpers.interpolation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers/helpers.interpolation.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers/helpers.intl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers/helpers.intl.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers/helpers.math.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers/helpers.math.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers/helpers.options.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers/helpers.options.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers/helpers.rtl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers/helpers.rtl.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers/helpers.segment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers/helpers.segment.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/helpers/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/helpers/index.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/index.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/index.umd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/index.umd.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/platform/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/platform/index.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/platform/platform.base.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/platform/platform.base.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/platform/platform.basic.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/platform/platform.basic.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/platform/platform.dom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/platform/platform.dom.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/plugins/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/plugins/index.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/plugins/plugin.colors.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/plugins/plugin.colors.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/plugins/plugin.decimation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/plugins/plugin.decimation.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/plugins/plugin.filler/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/plugins/plugin.filler/index.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/plugins/plugin.filler/simpleArc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/plugins/plugin.filler/simpleArc.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/plugins/plugin.legend.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/plugins/plugin.legend.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/plugins/plugin.subtitle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/plugins/plugin.subtitle.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/plugins/plugin.title.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/plugins/plugin.title.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/plugins/plugin.tooltip.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/plugins/plugin.tooltip.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/scales/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/scales/index.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/scales/scale.category.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/scales/scale.category.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/scales/scale.linear.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/scales/scale.linear.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/scales/scale.linearbase.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/scales/scale.linearbase.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/scales/scale.logarithmic.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/scales/scale.logarithmic.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/scales/scale.radialLinear.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/scales/scale.radialLinear.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/scales/scale.time.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/scales/scale.time.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/scales/scale.timeseries.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/scales/scale.timeseries.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/types.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/types/animation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/types/animation.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/types/basic.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/types/basic.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/types/color.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/types/color.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/types/geometric.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/types/geometric.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/types/index.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/types/layout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/types/layout.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/chart.js/types/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/chart.js/types/utils.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/echarts.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/echarts.common.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/echarts.common.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/echarts.common.js.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/echarts.common.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/echarts.common.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/echarts.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/echarts.esm.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/echarts.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/echarts.esm.js.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/echarts.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/echarts.esm.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/echarts.esm.min.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/echarts.esm.min.mjs -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/echarts.esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/echarts.esm.mjs -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/echarts.esm.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/echarts.esm.mjs.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/echarts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/echarts.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/echarts.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/echarts.js.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/echarts.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/echarts.simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/echarts.simple.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/echarts.simple.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/echarts.simple.js.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/echarts.simple.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/echarts.simple.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/extension/bmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/extension/bmap.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/extension/bmap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/extension/bmap.js.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/extension/bmap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/extension/bmap.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/extension/dataTool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/extension/dataTool.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/extension/dataTool.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/extension/dataTool.js.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/extension/dataTool.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/echarts/extension/dataTool.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/echarts/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/php-email-form/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/php-email-form/validate.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/quill/quill.bubble.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/quill/quill.bubble.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/quill/quill.bubble.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/quill/quill.bubble.css.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/quill/quill.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/quill/quill.core.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/quill/quill.core.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/quill/quill.core.css.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/quill/quill.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/quill/quill.core.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/quill/quill.core.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/quill/quill.core.js.LICENSE.txt -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/quill/quill.core.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/quill/quill.core.js.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/quill/quill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/quill/quill.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/quill/quill.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/quill/quill.js.LICENSE.txt -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/quill/quill.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/quill/quill.js.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/quill/quill.snow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/quill/quill.snow.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/quill/quill.snow.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/quill/quill.snow.css.map -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/remixicon/remixicon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/remixicon/remixicon.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/remixicon/remixicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/remixicon/remixicon.eot -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/remixicon/remixicon.glyph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/remixicon/remixicon.glyph.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/remixicon/remixicon.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/remixicon/remixicon.less -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/remixicon/remixicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/remixicon/remixicon.svg -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/remixicon/remixicon.symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/remixicon/remixicon.symbol.svg -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/remixicon/remixicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/remixicon/remixicon.ttf -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/remixicon/remixicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/remixicon/remixicon.woff -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/remixicon/remixicon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/remixicon/remixicon.woff2 -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/simple-datatables/simple-datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/simple-datatables/simple-datatables.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/simple-datatables/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/simple-datatables/style.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/README.md -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/bower.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/composer.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/icons/default/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/icons/default/icons.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/icons/default/icons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/icons/default/icons.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/icons/default/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/icons/default/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/license.md -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/models/dom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/models/dom/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/models/dom/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/models/dom/model.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/models/dom/model.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/models/dom/model.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/package.json -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/accordion/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/accordion/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/accordion/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/accordion/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/accordion/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/accordion/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/advlist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/advlist/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/advlist/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/advlist/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/advlist/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/advlist/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/anchor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/anchor/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/anchor/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/anchor/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/anchor/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/anchor/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/autolink/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/autolink/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/autolink/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/autolink/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/autolink/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/autolink/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/autoresize/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/autoresize/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/autoresize/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/autoresize/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/autoresize/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/autoresize/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/autosave/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/autosave/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/autosave/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/autosave/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/autosave/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/autosave/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/charmap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/charmap/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/charmap/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/charmap/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/charmap/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/charmap/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/code/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/code/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/code/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/code/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/code/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/codesample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/codesample/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/codesample/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/codesample/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/codesample/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/codesample/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/directionality/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/directionality/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/directionality/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/directionality/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/directionality/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/directionality/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/emoticons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/emoticons/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/emoticons/js/emojiimages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/emoticons/js/emojiimages.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/emoticons/js/emojis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/emoticons/js/emojis.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/emoticons/js/emojis.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/emoticons/js/emojis.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/emoticons/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/emoticons/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/emoticons/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/emoticons/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/fullscreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/fullscreen/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/fullscreen/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/fullscreen/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/fullscreen/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/fullscreen/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/ar.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/bg_BG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/bg_BG.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/ca.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/cs.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/da.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/de.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/el.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/en.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/es.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/eu.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/fa.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/fi.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/fr_FR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/fr_FR.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/he_IL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/he_IL.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/hi.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/hr.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/hu_HU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/hu_HU.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/id.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/it.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/ja.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/kk.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/ko_KR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/ko_KR.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/ms.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/nb_NO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/nb_NO.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/nl.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/pl.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/pt_BR.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/pt_PT.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/ro.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/ru.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/sk.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/sl_SI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/sl_SI.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/sv_SE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/sv_SE.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/th_TH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/th_TH.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/tr.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/uk.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/vi.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/zh_CN.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/js/i18n/keynav/zh_TW.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/help/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/help/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/image/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/image/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/image/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/image/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/image/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/importcss/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/importcss/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/importcss/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/importcss/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/importcss/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/importcss/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/insertdatetime/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/insertdatetime/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/insertdatetime/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/insertdatetime/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/insertdatetime/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/insertdatetime/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/link/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/link/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/link/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/link/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/link/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/lists/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/lists/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/lists/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/lists/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/lists/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/lists/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/media/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/media/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/media/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/media/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/media/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/media/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/nonbreaking/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/nonbreaking/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/nonbreaking/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/nonbreaking/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/nonbreaking/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/nonbreaking/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/pagebreak/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/pagebreak/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/pagebreak/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/pagebreak/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/pagebreak/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/pagebreak/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/preview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/preview/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/preview/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/preview/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/preview/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/preview/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/quickbars/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/quickbars/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/quickbars/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/quickbars/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/quickbars/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/quickbars/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/save/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/save/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/save/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/save/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/save/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/save/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/searchreplace/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/searchreplace/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/searchreplace/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/searchreplace/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/searchreplace/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/searchreplace/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/table/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/table/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/table/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/table/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/table/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/table/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/visualblocks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/visualblocks/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/visualblocks/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/visualblocks/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/visualblocks/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/visualblocks/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/visualchars/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/visualchars/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/visualchars/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/visualchars/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/visualchars/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/visualchars/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/wordcount/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/wordcount/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/wordcount/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/wordcount/plugin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/plugins/wordcount/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/plugins/wordcount/plugin.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/content/dark/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/content/dark/content.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/content/dark/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/content/dark/content.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/content/dark/content.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/content/dark/content.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/content/default/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/content/default/content.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/content/default/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/content/default/content.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/content/default/content.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/content/default/content.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/content/document/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/content/document/content.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/content/document/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/content/document/content.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/content/document/content.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/content/document/content.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/content/tinymce-5/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/content/tinymce-5/content.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/content/tinymce-5/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/content/tinymce-5/content.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/content/writer/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/content/writer/content.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/content/writer/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/content/writer/content.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/content/writer/content.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/content/writer/content.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/content.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/content.inline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/content.inline.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/content.inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/content.inline.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/content.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/content.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/content.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/skin.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/skin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/skin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/skin.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/skin.shadowdom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/skin.shadowdom.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/skin.shadowdom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide-dark/skin.shadowdom.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide/content.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide/content.inline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide/content.inline.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide/content.inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide/content.inline.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide/content.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide/content.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide/content.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide/skin.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide/skin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide/skin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide/skin.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide/skin.shadowdom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide/skin.shadowdom.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/oxide/skin.shadowdom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/oxide/skin.shadowdom.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5-dark/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5-dark/content.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5-dark/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5-dark/content.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5-dark/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5-dark/skin.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5-dark/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5-dark/skin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5-dark/skin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5-dark/skin.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5/content.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5/content.inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5/content.inline.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5/content.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5/content.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5/content.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5/skin.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5/skin.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5/skin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5/skin.min.css -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5/skin.shadowdom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/skins/ui/tinymce-5/skin.shadowdom.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/themes/silver/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/themes/silver/index.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/themes/silver/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/themes/silver/theme.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/themes/silver/theme.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/themes/silver/theme.min.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/tinymce.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/tinymce.d.ts -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/tinymce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/tinymce.js -------------------------------------------------------------------------------- /public/dashboard-assets/vendor/tinymce/tinymce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/dashboard-assets/vendor/tinymce/tinymce.min.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/index.php -------------------------------------------------------------------------------- /public/reviews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/reviews.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/screenshots/PREVIEW.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/screenshots/PREVIEW.gif -------------------------------------------------------------------------------- /public/screenshots/RTL.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/screenshots/RTL.PNG -------------------------------------------------------------------------------- /public/screenshots/dashabord.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/screenshots/dashabord.PNG -------------------------------------------------------------------------------- /public/screenshots/edit_user.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/screenshots/edit_user.PNG -------------------------------------------------------------------------------- /public/screenshots/login.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/screenshots/login.PNG -------------------------------------------------------------------------------- /public/screenshots/logs.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/screenshots/logs.PNG -------------------------------------------------------------------------------- /public/screenshots/notifiaction.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/screenshots/notifiaction.PNG -------------------------------------------------------------------------------- /public/screenshots/permissions.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/screenshots/permissions.PNG -------------------------------------------------------------------------------- /public/screenshots/profile.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/screenshots/profile.PNG -------------------------------------------------------------------------------- /public/screenshots/roles.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/screenshots/roles.PNG -------------------------------------------------------------------------------- /public/screenshots/roles_permissions.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/screenshots/roles_permissions.PNG -------------------------------------------------------------------------------- /public/screenshots/sweet_alert.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/screenshots/sweet_alert.PNG -------------------------------------------------------------------------------- /public/screenshots/undo_action.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/screenshots/undo_action.PNG -------------------------------------------------------------------------------- /public/screenshots/users.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/public/screenshots/users.PNG -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/Components/ApplicationLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Components/ApplicationLogo.vue -------------------------------------------------------------------------------- /resources/js/Components/Chart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Components/Chart.vue -------------------------------------------------------------------------------- /resources/js/Components/Checkbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Components/Checkbox.vue -------------------------------------------------------------------------------- /resources/js/Components/DangerButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Components/DangerButton.vue -------------------------------------------------------------------------------- /resources/js/Components/DeleteButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Components/DeleteButton.vue -------------------------------------------------------------------------------- /resources/js/Components/Dropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Components/Dropdown.vue -------------------------------------------------------------------------------- /resources/js/Components/DropdownLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Components/DropdownLink.vue -------------------------------------------------------------------------------- /resources/js/Components/EditButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Components/EditButton.vue -------------------------------------------------------------------------------- /resources/js/Components/InputError.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Components/InputError.vue -------------------------------------------------------------------------------- /resources/js/Components/InputLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Components/InputLabel.vue -------------------------------------------------------------------------------- /resources/js/Components/LogsChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Components/LogsChart.vue -------------------------------------------------------------------------------- /resources/js/Components/Modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Components/Modal.vue -------------------------------------------------------------------------------- /resources/js/Components/NavLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Components/NavLink.vue -------------------------------------------------------------------------------- /resources/js/Components/Pagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Components/Pagination.vue -------------------------------------------------------------------------------- /resources/js/Components/PrimaryButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Components/PrimaryButton.vue -------------------------------------------------------------------------------- /resources/js/Components/ResponsiveNavLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Components/ResponsiveNavLink.vue -------------------------------------------------------------------------------- /resources/js/Components/SecondaryButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Components/SecondaryButton.vue -------------------------------------------------------------------------------- /resources/js/Components/SideBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Components/SideBar.vue -------------------------------------------------------------------------------- /resources/js/Components/TextInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Components/TextInput.vue -------------------------------------------------------------------------------- /resources/js/Layouts/AuthenticatedLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Layouts/AuthenticatedLayout.vue -------------------------------------------------------------------------------- /resources/js/Layouts/GuestLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Layouts/GuestLayout.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ConfirmPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Auth/ConfirmPassword.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ForgotPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Auth/ForgotPassword.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Auth/Login.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Auth/Register.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ResetPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Auth/ResetPassword.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/VerifyEmail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Auth/VerifyEmail.vue -------------------------------------------------------------------------------- /resources/js/Pages/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Dashboard.vue -------------------------------------------------------------------------------- /resources/js/Pages/Dashboard_old.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Dashboard_old.vue -------------------------------------------------------------------------------- /resources/js/Pages/Errors/403.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Errors/403.vue -------------------------------------------------------------------------------- /resources/js/Pages/Errors/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Errors/404.vue -------------------------------------------------------------------------------- /resources/js/Pages/Logs/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Logs/index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Logs/view.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Logs/view.vue -------------------------------------------------------------------------------- /resources/js/Pages/Notification/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Notification/index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Profile/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Profile/Edit.vue -------------------------------------------------------------------------------- /resources/js/Pages/Profile/Partials/DeleteUserForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Profile/Partials/DeleteUserForm.vue -------------------------------------------------------------------------------- /resources/js/Pages/Profile/Partials/UpdatePasswordForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Profile/Partials/UpdatePasswordForm.vue -------------------------------------------------------------------------------- /resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.vue -------------------------------------------------------------------------------- /resources/js/Pages/Users/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Users/Create.vue -------------------------------------------------------------------------------- /resources/js/Pages/Users/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Users/Edit.vue -------------------------------------------------------------------------------- /resources/js/Pages/Users/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Users/index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Welcome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/Welcome.vue -------------------------------------------------------------------------------- /resources/js/Pages/roles-permissions/Permissions/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/roles-permissions/Permissions/Create.vue -------------------------------------------------------------------------------- /resources/js/Pages/roles-permissions/Permissions/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/roles-permissions/Permissions/Edit.vue -------------------------------------------------------------------------------- /resources/js/Pages/roles-permissions/Permissions/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/roles-permissions/Permissions/index.vue -------------------------------------------------------------------------------- /resources/js/Pages/roles-permissions/Roles/Add-permissions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/roles-permissions/Roles/Add-permissions.vue -------------------------------------------------------------------------------- /resources/js/Pages/roles-permissions/Roles/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/roles-permissions/Roles/Create.vue -------------------------------------------------------------------------------- /resources/js/Pages/roles-permissions/Roles/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/roles-permissions/Roles/Edit.vue -------------------------------------------------------------------------------- /resources/js/Pages/roles-permissions/Roles/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/Pages/roles-permissions/Roles/index.vue -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/views/app.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/routes/web.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/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/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 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/Auth/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/tests/Feature/Auth/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/tests/Feature/Auth/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/tests/Feature/Auth/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/tests/Feature/Auth/PasswordUpdateTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/tests/Feature/Auth/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/ProfileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/tests/Feature/ProfileTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MogahidGaffar/Laravel-vue-Starter-Kit-Dashboard/HEAD/vite.config.js --------------------------------------------------------------------------------