├── public ├── favicon.ico ├── robots.txt └── assets │ └── img │ ├── avatars │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 2.png │ ├── 20.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png │ ├── favicon │ └── favicon.ico │ ├── pages │ ├── auth-top-left.png │ └── auth-right-bottom.png │ └── illustrations │ ├── page-misc-error-dark.png │ └── page-misc-error-light.png ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore └── framework │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── cache │ ├── data │ │ └── .gitignore │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── .prettierignore ├── README.md ├── resources ├── assets │ ├── vendor │ │ ├── libs │ │ │ ├── hammer │ │ │ │ └── hammer.js │ │ │ ├── jstree │ │ │ │ ├── jstree.js │ │ │ │ └── themes │ │ │ │ │ ├── default │ │ │ │ │ ├── 32px.png │ │ │ │ │ ├── 40px.png │ │ │ │ │ └── throbber.gif │ │ │ │ │ └── default-dark │ │ │ │ │ ├── 32px.png │ │ │ │ │ ├── 40px.png │ │ │ │ │ └── throbber.gif │ │ │ ├── jszip │ │ │ │ └── jszip.js │ │ │ ├── block-ui │ │ │ │ └── block-ui.js │ │ │ ├── animate-css │ │ │ │ └── animate.scss │ │ │ ├── animate-on-scroll │ │ │ │ ├── animate-on-scroll.scss │ │ │ │ └── animate-on-scroll.js │ │ │ ├── plyr │ │ │ │ └── plyr.js │ │ │ ├── jquery-sticky │ │ │ │ └── jquery-sticky.js │ │ │ ├── highlight │ │ │ │ ├── highlight-github.scss │ │ │ │ ├── highlight.scss │ │ │ │ └── highlight.js │ │ │ ├── datatables │ │ │ │ └── jquery.dataTables.js │ │ │ ├── jquery-timepicker │ │ │ │ ├── jquery-timepicker.js │ │ │ │ └── _mixins.scss │ │ │ ├── quill │ │ │ │ ├── katex.js │ │ │ │ └── quill.js │ │ │ ├── swiper │ │ │ │ ├── swiper.js │ │ │ │ └── _mixins.scss │ │ │ ├── datatables-buttons │ │ │ │ ├── buttons.html5.js │ │ │ │ ├── buttons.print.js │ │ │ │ ├── buttons.colVis.js │ │ │ │ └── datatables-buttons.js │ │ │ ├── leaflet │ │ │ │ ├── leaflet.js │ │ │ │ └── images │ │ │ │ │ ├── layers.png │ │ │ │ │ ├── layers-2x.png │ │ │ │ │ ├── marker-icon.png │ │ │ │ │ ├── marker-icon-2x.png │ │ │ │ │ └── marker-shadow.png │ │ │ ├── moment │ │ │ │ └── moment.js │ │ │ ├── tagify │ │ │ │ ├── tagify.js │ │ │ │ └── _mixins.scss │ │ │ ├── toastr │ │ │ │ └── toastr.js │ │ │ ├── chartjs │ │ │ │ └── chartjs.js │ │ │ ├── cleavejs │ │ │ │ ├── cleave.js │ │ │ │ └── cleave-phone.js │ │ │ ├── datatables-bs5 │ │ │ │ └── datatables-bootstrap5.js │ │ │ ├── datatables-select │ │ │ │ └── datatables-select.js │ │ │ ├── rateyo │ │ │ │ └── rateyo.js │ │ │ ├── bootstrap-maxlength │ │ │ │ └── bootstrap-maxlength.js │ │ │ ├── datatables-rowgroup │ │ │ │ └── datatables.rowgroup.js │ │ │ ├── datatables-select-bs5 │ │ │ │ └── select.bootstrap5.js │ │ │ ├── nouislider │ │ │ │ ├── nouislider.js │ │ │ │ └── _mixins.scss │ │ │ ├── pickr │ │ │ │ ├── pickr.js │ │ │ │ ├── _pickr-nano.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _pickr-monolith.scss │ │ │ │ └── _pickr-classic.scss │ │ │ ├── select2 │ │ │ │ └── select2.js │ │ │ ├── apex-charts │ │ │ │ └── apexcharts.js │ │ │ ├── autosize │ │ │ │ └── autosize.js │ │ │ ├── bootstrap-datepicker │ │ │ │ └── bootstrap-datepicker.js │ │ │ ├── datatables-buttons-bs5 │ │ │ │ └── buttons.bootstrap5.js │ │ │ ├── shepherd │ │ │ │ └── shepherd.js │ │ │ ├── sortablejs │ │ │ │ └── sortable.js │ │ │ ├── datatables-responsive │ │ │ │ └── datatables.responsive.js │ │ │ ├── datatables-rowgroup-bs5 │ │ │ │ └── rowgroup.bootstrap5.js │ │ │ ├── feather-icons │ │ │ │ └── feather.js │ │ │ ├── flatpickr │ │ │ │ └── flatpickr.js │ │ │ ├── jquery │ │ │ │ └── jquery.js │ │ │ ├── bloodhound │ │ │ │ └── bloodhound.js │ │ │ ├── clipboard │ │ │ │ └── clipboard.js │ │ │ ├── datatables-fixedcolumns │ │ │ │ └── datatables.fixedcolumns.js │ │ │ ├── datatables-fixedheader │ │ │ │ └── datatables.fixedheader.js │ │ │ ├── datatables-responsive-bs5 │ │ │ │ ├── responsive.bootstrap5.js │ │ │ │ └── _mixins.scss │ │ │ ├── datatables-checkboxes-jquery │ │ │ │ ├── datatables.checkboxes.js │ │ │ │ └── datatables.checkboxes.scss │ │ │ ├── datatables-fixedheader-bs5 │ │ │ │ └── fixedheader.bootstrap5.js │ │ │ ├── typeahead-js │ │ │ │ ├── typeahead.js │ │ │ │ └── _mixins.scss │ │ │ ├── datatables-fixedcolumns-bs5 │ │ │ │ └── fixedcolumns.bootstrap5.js │ │ │ ├── jquery-repeater │ │ │ │ └── jquery-repeater.js │ │ │ ├── numeral │ │ │ │ └── numeral.js │ │ │ ├── bootstrap-select │ │ │ │ ├── bootstrap-select.js │ │ │ │ └── _mixins.scss │ │ │ ├── dropzone │ │ │ │ └── _mixins.scss │ │ │ ├── perfect-scrollbar │ │ │ │ └── perfect-scrollbar.js │ │ │ ├── chartjs-plugin-style │ │ │ │ └── chartjs-plugin-style.js │ │ │ ├── masonry │ │ │ │ └── masonry.js │ │ │ ├── i18n │ │ │ │ └── i18n.js │ │ │ ├── popper │ │ │ │ └── popper.js │ │ │ ├── sweetalert2 │ │ │ │ └── sweetalert2.js │ │ │ ├── pdfmake │ │ │ │ └── pdfmake.js │ │ │ ├── spinkit │ │ │ │ ├── spinkit.scss │ │ │ │ └── _mixins.scss │ │ │ └── fullcalendar │ │ │ │ └── fullcalendar.js │ │ ├── scss │ │ │ ├── rtl │ │ │ │ ├── _colors.scss │ │ │ │ ├── _bootstrap.scss │ │ │ │ ├── _components.scss │ │ │ │ ├── _colors-dark.scss │ │ │ │ ├── theme-default.scss │ │ │ │ ├── _bootstrap-dark.scss │ │ │ │ ├── _components-dark.scss │ │ │ │ ├── theme-bordered.scss │ │ │ │ ├── theme-raspberry.scss │ │ │ │ ├── theme-semi-dark.scss │ │ │ │ ├── theme-default-dark.scss │ │ │ │ ├── theme-bordered-dark.scss │ │ │ │ ├── theme-raspberry-dark.scss │ │ │ │ ├── theme-semi-dark-dark.scss │ │ │ │ ├── core.scss │ │ │ │ ├── core-dark.scss │ │ │ │ ├── _bootstrap-extended.scss │ │ │ │ └── _bootstrap-extended-dark.scss │ │ │ ├── core.scss │ │ │ ├── core-dark.scss │ │ │ ├── _bootstrap-extended │ │ │ │ ├── forms │ │ │ │ │ ├── _form-text.scss │ │ │ │ │ ├── _form-control.scss │ │ │ │ │ └── _labels.scss │ │ │ │ ├── _root.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _type.scss │ │ │ │ ├── mixins │ │ │ │ │ ├── _badge.scss │ │ │ │ │ ├── _progress.scss │ │ │ │ │ ├── _modal.scss │ │ │ │ │ └── _toasts.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _include.scss │ │ │ │ ├── _include-dark.scss │ │ │ │ └── _mixins.scss │ │ │ ├── _components │ │ │ │ ├── mixins │ │ │ │ │ ├── _misc.scss │ │ │ │ │ ├── _text-divider.scss │ │ │ │ │ ├── _treeview.scss │ │ │ │ │ ├── _avatar.scss │ │ │ │ │ └── _app-brand.scss │ │ │ │ ├── _blockui.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _drag-drop.scss │ │ │ │ ├── _include.scss │ │ │ │ └── _include-dark.scss │ │ │ ├── _theme │ │ │ │ └── _pages.scss │ │ │ ├── pages │ │ │ │ ├── _mixins.scss │ │ │ │ ├── wizard-ex-checkout.scss │ │ │ │ ├── page-account-settings.scss │ │ │ │ └── page-misc.scss │ │ │ ├── _custom-variables │ │ │ │ ├── _components.scss │ │ │ │ ├── _components-dark.scss │ │ │ │ ├── _libs.scss │ │ │ │ ├── _pages.scss │ │ │ │ ├── _bootstrap-extended-dark.scss │ │ │ │ └── _bootstrap-extended.scss │ │ │ ├── _components.scss │ │ │ └── _components-dark.scss │ │ └── fonts │ │ │ ├── flag-icons.scss │ │ │ ├── flags │ │ │ ├── 4x3 │ │ │ │ ├── bd.svg │ │ │ │ ├── de.svg │ │ │ │ ├── gl.svg │ │ │ │ ├── am.svg │ │ │ │ ├── bq.svg │ │ │ │ ├── nl.svg │ │ │ │ ├── pl.svg │ │ │ │ ├── gb-sct.svg │ │ │ │ ├── lu.svg │ │ │ │ ├── fi.svg │ │ │ │ ├── lv.svg │ │ │ │ ├── dk.svg │ │ │ │ ├── id.svg │ │ │ │ ├── mc.svg │ │ │ │ ├── ua.svg │ │ │ │ ├── at.svg │ │ │ │ ├── gb-eng.svg │ │ │ │ ├── ma.svg │ │ │ │ ├── es-ca.svg │ │ │ │ ├── ae.svg │ │ │ │ ├── bw.svg │ │ │ │ ├── ng.svg │ │ │ │ ├── td.svg │ │ │ │ ├── ga.svg │ │ │ │ ├── hu.svg │ │ │ │ ├── ne.svg │ │ │ │ ├── gh.svg │ │ │ │ ├── ml.svg │ │ │ │ ├── sl.svg │ │ │ │ ├── ye.svg │ │ │ │ ├── ci.svg │ │ │ │ ├── bg.svg │ │ │ │ ├── co.svg │ │ │ │ ├── dz.svg │ │ │ │ ├── mv.svg │ │ │ │ ├── ru.svg │ │ │ │ ├── th.svg │ │ │ │ ├── be.svg │ │ │ │ ├── bl.svg │ │ │ │ ├── cr.svg │ │ │ │ ├── fr.svg │ │ │ │ ├── gf.svg │ │ │ │ ├── gp.svg │ │ │ │ ├── ie.svg │ │ │ │ ├── it.svg │ │ │ │ ├── mf.svg │ │ │ │ ├── mq.svg │ │ │ │ ├── pm.svg │ │ │ │ ├── re.svg │ │ │ │ ├── wf.svg │ │ │ │ ├── yt.svg │ │ │ │ ├── gn.svg │ │ │ │ ├── mg.svg │ │ │ │ ├── ro.svg │ │ │ │ ├── tt.svg │ │ │ │ ├── sr.svg │ │ │ │ ├── ch.svg │ │ │ │ ├── ee.svg │ │ │ │ ├── mu.svg │ │ │ │ ├── no.svg │ │ │ │ ├── sj.svg │ │ │ │ ├── cd.svg │ │ │ │ ├── qa.svg │ │ │ │ ├── bf.svg │ │ │ │ ├── lc.svg │ │ │ │ ├── mk.svg │ │ │ │ ├── to.svg │ │ │ │ ├── jm.svg │ │ │ │ ├── ss.svg │ │ │ │ ├── sn.svg │ │ │ │ ├── mr.svg │ │ │ │ ├── lt.svg │ │ │ │ ├── vc.svg │ │ │ │ ├── la.svg │ │ │ │ ├── pw.svg │ │ │ │ ├── jp.svg │ │ │ │ ├── gy.svg │ │ │ │ ├── az.svg │ │ │ │ ├── cz.svg │ │ │ │ ├── cg.svg │ │ │ │ ├── vn.svg │ │ │ │ ├── so.svg │ │ │ │ ├── bh.svg │ │ │ │ ├── gb.svg │ │ │ │ ├── sd.svg │ │ │ │ ├── bj.svg │ │ │ │ ├── kw.svg │ │ │ │ ├── is.svg │ │ │ │ ├── tr.svg │ │ │ │ ├── sy.svg │ │ │ │ ├── ly.svg │ │ │ │ ├── gm.svg │ │ │ │ ├── tz.svg │ │ │ │ ├── bs.svg │ │ │ │ ├── cl.svg │ │ │ │ ├── fo.svg │ │ │ │ ├── bb.svg │ │ │ │ ├── ps.svg │ │ │ │ ├── gg.svg │ │ │ │ ├── sc.svg │ │ │ │ ├── ax.svg │ │ │ │ ├── bv.svg │ │ │ │ ├── dj.svg │ │ │ │ └── tl.svg │ │ │ └── 1x1 │ │ │ │ ├── bd.svg │ │ │ │ ├── de.svg │ │ │ │ ├── pl.svg │ │ │ │ ├── am.svg │ │ │ │ ├── bq.svg │ │ │ │ ├── lu.svg │ │ │ │ ├── nl.svg │ │ │ │ ├── dk.svg │ │ │ │ ├── gb-eng.svg │ │ │ │ ├── gl.svg │ │ │ │ ├── fi.svg │ │ │ │ ├── gb-sct.svg │ │ │ │ ├── lv.svg │ │ │ │ ├── mc.svg │ │ │ │ ├── ua.svg │ │ │ │ ├── at.svg │ │ │ │ ├── id.svg │ │ │ │ ├── ma.svg │ │ │ │ ├── es-ca.svg │ │ │ │ ├── bw.svg │ │ │ │ ├── ae.svg │ │ │ │ ├── ng.svg │ │ │ │ ├── ga.svg │ │ │ │ ├── hu.svg │ │ │ │ ├── ml.svg │ │ │ │ ├── ne.svg │ │ │ │ ├── td.svg │ │ │ │ ├── ye.svg │ │ │ │ ├── ci.svg │ │ │ │ ├── co.svg │ │ │ │ ├── th.svg │ │ │ │ ├── be.svg │ │ │ │ ├── bg.svg │ │ │ │ ├── bl.svg │ │ │ │ ├── cr.svg │ │ │ │ ├── fr.svg │ │ │ │ ├── gf.svg │ │ │ │ ├── gh.svg │ │ │ │ ├── gp.svg │ │ │ │ ├── ie.svg │ │ │ │ ├── it.svg │ │ │ │ ├── mf.svg │ │ │ │ ├── mq.svg │ │ │ │ ├── pm.svg │ │ │ │ ├── re.svg │ │ │ │ ├── ru.svg │ │ │ │ ├── wf.svg │ │ │ │ ├── yt.svg │ │ │ │ ├── dz.svg │ │ │ │ ├── gn.svg │ │ │ │ ├── mg.svg │ │ │ │ ├── mv.svg │ │ │ │ ├── ro.svg │ │ │ │ ├── ch.svg │ │ │ │ ├── sr.svg │ │ │ │ ├── mu.svg │ │ │ │ ├── no.svg │ │ │ │ ├── sj.svg │ │ │ │ ├── tt.svg │ │ │ │ ├── qa.svg │ │ │ │ ├── ee.svg │ │ │ │ ├── lc.svg │ │ │ │ ├── bf.svg │ │ │ │ ├── to.svg │ │ │ │ ├── jm.svg │ │ │ │ ├── gm.svg │ │ │ │ ├── mk.svg │ │ │ │ ├── ss.svg │ │ │ │ ├── sn.svg │ │ │ │ ├── mr.svg │ │ │ │ ├── lt.svg │ │ │ │ ├── sl.svg │ │ │ │ ├── gy.svg │ │ │ │ ├── az.svg │ │ │ │ ├── cg.svg │ │ │ │ ├── vc.svg │ │ │ │ ├── cz.svg │ │ │ │ ├── jp.svg │ │ │ │ ├── so.svg │ │ │ │ ├── vn.svg │ │ │ │ ├── la.svg │ │ │ │ ├── sd.svg │ │ │ │ ├── pw.svg │ │ │ │ ├── bj.svg │ │ │ │ ├── cd.svg │ │ │ │ ├── gb.svg │ │ │ │ ├── kw.svg │ │ │ │ ├── bh.svg │ │ │ │ ├── is.svg │ │ │ │ ├── ly.svg │ │ │ │ ├── fo.svg │ │ │ │ ├── sy.svg │ │ │ │ ├── tr.svg │ │ │ │ ├── ps.svg │ │ │ │ ├── ax.svg │ │ │ │ ├── bb.svg │ │ │ │ ├── bs.svg │ │ │ │ ├── cl.svg │ │ │ │ ├── cu.svg │ │ │ │ ├── sc.svg │ │ │ │ ├── tl.svg │ │ │ │ ├── bv.svg │ │ │ │ ├── dj.svg │ │ │ │ └── gg.svg │ │ │ └── fontawesome.scss │ └── js │ │ ├── app-invoice-print.js │ │ ├── extended-ui-media-player.js │ │ ├── form-basic-inputs.js │ │ ├── extended-ui-timeline.js │ │ ├── offcanvas-send-invoice.js │ │ ├── ui-popover.js │ │ ├── ui-navbar.js │ │ └── extended-ui-misc-clipboardjs.js ├── .DS_Store ├── js │ └── app.js ├── views │ ├── .DS_Store │ ├── example-content │ │ ├── .DS_Store │ │ └── layouts-example │ │ │ └── layouts-blank.blade.php │ ├── vendor │ │ └── jetstream │ │ │ └── components │ │ │ ├── dropdown-link.blade.php │ │ │ ├── checkbox.blade.php │ │ │ ├── label.blade.php │ │ │ ├── button.blade.php │ │ │ ├── input.blade.php │ │ │ ├── danger-button.blade.php │ │ │ ├── secondary-button.blade.php │ │ │ ├── input-error.blade.php │ │ │ ├── action-section.blade.php │ │ │ ├── nav-link.blade.php │ │ │ ├── authentication-card.blade.php │ │ │ ├── dropdown.blade.php │ │ │ ├── validation-errors.blade.php │ │ │ ├── action-message.blade.php │ │ │ ├── form-section.blade.php │ │ │ ├── confirmation-modal.blade.php │ │ │ └── dialog-modal.blade.php │ ├── content │ │ └── pages │ │ │ ├── pages-page2.blade.php │ │ │ └── pages-home.blade.php │ ├── _partials │ │ └── macros.blade.php │ ├── layouts │ │ ├── layoutMaster.blade.php │ │ └── blankLayout.blade.php │ └── api │ │ └── index.blade.php ├── markdown │ ├── policy.md │ └── terms.md └── menu │ └── verticalMenu.json ├── .DS_Store ├── docker ├── 7.4 │ ├── php.ini │ ├── start-container │ └── supervisord.conf ├── 8.0 │ ├── php.ini │ ├── start-container │ └── supervisord.conf └── 8.1 │ ├── php.ini │ ├── start-container │ └── supervisord.conf ├── .gitattributes ├── tests ├── TestCase.php ├── Unit │ └── ExampleTest.php ├── Feature │ └── ExampleTest.php └── CreatesApplication.php ├── .styleci.yml ├── app ├── Http │ ├── Controllers │ │ ├── pages │ │ │ ├── Page2.php │ │ │ ├── HomePage.php │ │ │ └── MiscError.php │ │ ├── Controller.php │ │ └── authentications │ │ │ ├── LoginBasic.php │ │ │ └── RegisterBasic.php │ └── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── TrustHosts.php │ │ ├── TrimStrings.php │ │ └── Authenticate.php ├── Actions │ ├── Fortify │ │ └── PasswordValidationRules.php │ └── Jetstream │ │ └── DeleteUser.php └── Providers │ ├── BroadcastServiceProvider.php │ └── AppServiceProvider.php ├── .editorconfig ├── .prettierrc.json ├── database └── seeders │ └── DatabaseSeeder.php ├── .gitignore └── routes ├── channels.php ├── api.php └── console.php /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | assets/vendor 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # El Rincon de Isma 2 | ## Template for Laravel install -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/hammer/hammer.js: -------------------------------------------------------------------------------- 1 | import 'hammerjs/hammer.js'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/jstree/jstree.js: -------------------------------------------------------------------------------- 1 | import 'jstree/dist/jstree'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/jszip/jszip.js: -------------------------------------------------------------------------------- 1 | import 'jszip/dist/jszip'; 2 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/.DS_Store -------------------------------------------------------------------------------- /resources/assets/vendor/libs/block-ui/block-ui.js: -------------------------------------------------------------------------------- 1 | import 'block-ui/jquery.blockUI'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/animate-css/animate.scss: -------------------------------------------------------------------------------- 1 | @import '~animate.css/animate'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/animate-on-scroll/animate-on-scroll.scss: -------------------------------------------------------------------------------- 1 | @import '~aos/dist/aos'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/plyr/plyr.js: -------------------------------------------------------------------------------- 1 | import Plyr from 'plyr'; 2 | 3 | export { Plyr }; 4 | -------------------------------------------------------------------------------- /resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/resources/.DS_Store -------------------------------------------------------------------------------- /resources/assets/vendor/libs/jquery-sticky/jquery-sticky.js: -------------------------------------------------------------------------------- 1 | import 'jquery-sticky/jquery.sticky'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/rtl/_colors.scss: -------------------------------------------------------------------------------- 1 | $rtl-support: true; 2 | 3 | @import '../colors'; 4 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import * as alpine from 'alpinejs/dist/cdn'; 2 | 3 | 4 | export { alpine }; 5 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/highlight/highlight-github.scss: -------------------------------------------------------------------------------- 1 | @import '~highlight.js/styles/github.css'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/highlight/highlight.scss: -------------------------------------------------------------------------------- 1 | @import '~highlight.js/styles/atom-one-light'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/rtl/_bootstrap.scss: -------------------------------------------------------------------------------- 1 | $rtl-support: true; 2 | 3 | @import '../bootstrap'; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/rtl/_components.scss: -------------------------------------------------------------------------------- 1 | $rtl-support: true; 2 | 3 | @import '../components'; 4 | -------------------------------------------------------------------------------- /docker/7.4/php.ini: -------------------------------------------------------------------------------- 1 | [PHP] 2 | post_max_size = 100M 3 | upload_max_filesize = 100M 4 | variables_order = EGPCS 5 | -------------------------------------------------------------------------------- /docker/8.0/php.ini: -------------------------------------------------------------------------------- 1 | [PHP] 2 | post_max_size = 100M 3 | upload_max_filesize = 100M 4 | variables_order = EGPCS 5 | -------------------------------------------------------------------------------- /docker/8.1/php.ini: -------------------------------------------------------------------------------- 1 | [PHP] 2 | post_max_size = 100M 3 | upload_max_filesize = 100M 4 | variables_order = EGPCS 5 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables/jquery.dataTables.js: -------------------------------------------------------------------------------- 1 | import 'datatables.net/js/jquery.dataTables'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/jquery-timepicker/jquery-timepicker.js: -------------------------------------------------------------------------------- 1 | import 'timepicker/jquery.timepicker'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/quill/katex.js: -------------------------------------------------------------------------------- 1 | import katex from 'katex/dist/katex'; 2 | 3 | export { katex }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/quill/quill.js: -------------------------------------------------------------------------------- 1 | import Quill from 'quill/dist/quill'; 2 | 3 | export { Quill }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/swiper/swiper.js: -------------------------------------------------------------------------------- 1 | import Swiper from 'swiper/bundle'; 2 | 3 | export { Swiper }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/rtl/_colors-dark.scss: -------------------------------------------------------------------------------- 1 | $rtl-support: true; 2 | 3 | @import '../colors-dark'; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/rtl/theme-default.scss: -------------------------------------------------------------------------------- 1 | $rtl-support: true; 2 | 3 | @import '../theme-default'; 4 | -------------------------------------------------------------------------------- /resources/views/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/resources/views/.DS_Store -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables-buttons/buttons.html5.js: -------------------------------------------------------------------------------- 1 | import 'datatables.net-buttons/js/buttons.html5'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables-buttons/buttons.print.js: -------------------------------------------------------------------------------- 1 | import 'datatables.net-buttons/js/buttons.print'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/leaflet/leaflet.js: -------------------------------------------------------------------------------- 1 | import * as leaFlet from 'leaflet'; 2 | 3 | export { leaFlet }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/moment/moment.js: -------------------------------------------------------------------------------- 1 | import * as moment from 'moment/moment'; 2 | 3 | export { moment }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/tagify/tagify.js: -------------------------------------------------------------------------------- 1 | import Tagify from '@yaireo/tagify'; 2 | 3 | export { Tagify }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/toastr/toastr.js: -------------------------------------------------------------------------------- 1 | import * as toastr from 'toastr/toastr'; 2 | 3 | export { toastr }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/rtl/_bootstrap-dark.scss: -------------------------------------------------------------------------------- 1 | $rtl-support: true; 2 | 3 | @import '../bootstrap-dark'; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/rtl/_components-dark.scss: -------------------------------------------------------------------------------- 1 | $rtl-support: true; 2 | 3 | @import '../components-dark'; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/rtl/theme-bordered.scss: -------------------------------------------------------------------------------- 1 | $rtl-support: true; 2 | 3 | @import '../theme-bordered'; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/rtl/theme-raspberry.scss: -------------------------------------------------------------------------------- 1 | $rtl-support: true; 2 | 3 | @import '../theme-raspberry'; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/rtl/theme-semi-dark.scss: -------------------------------------------------------------------------------- 1 | $rtl-support: true; 2 | 3 | @import '../theme-semi-dark'; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables-buttons/buttons.colVis.js: -------------------------------------------------------------------------------- 1 | import 'datatables.net-buttons/js/buttons.colVis'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/rtl/theme-default-dark.scss: -------------------------------------------------------------------------------- 1 | $rtl-support: true; 2 | 3 | @import '../theme-default-dark'; 4 | -------------------------------------------------------------------------------- /public/assets/img/avatars/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/1.png -------------------------------------------------------------------------------- /public/assets/img/avatars/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/10.png -------------------------------------------------------------------------------- /public/assets/img/avatars/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/11.png -------------------------------------------------------------------------------- /public/assets/img/avatars/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/12.png -------------------------------------------------------------------------------- /public/assets/img/avatars/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/13.png -------------------------------------------------------------------------------- /public/assets/img/avatars/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/14.png -------------------------------------------------------------------------------- /public/assets/img/avatars/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/15.png -------------------------------------------------------------------------------- /public/assets/img/avatars/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/16.png -------------------------------------------------------------------------------- /public/assets/img/avatars/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/17.png -------------------------------------------------------------------------------- /public/assets/img/avatars/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/18.png -------------------------------------------------------------------------------- /public/assets/img/avatars/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/19.png -------------------------------------------------------------------------------- /public/assets/img/avatars/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/2.png -------------------------------------------------------------------------------- /public/assets/img/avatars/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/20.png -------------------------------------------------------------------------------- /public/assets/img/avatars/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/3.png -------------------------------------------------------------------------------- /public/assets/img/avatars/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/4.png -------------------------------------------------------------------------------- /public/assets/img/avatars/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/5.png -------------------------------------------------------------------------------- /public/assets/img/avatars/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/6.png -------------------------------------------------------------------------------- /public/assets/img/avatars/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/7.png -------------------------------------------------------------------------------- /public/assets/img/avatars/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/8.png -------------------------------------------------------------------------------- /public/assets/img/avatars/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/avatars/9.png -------------------------------------------------------------------------------- /resources/assets/vendor/libs/chartjs/chartjs.js: -------------------------------------------------------------------------------- 1 | import * as Chart from 'chart.js/dist/chart'; 2 | 3 | export { Chart }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/cleavejs/cleave.js: -------------------------------------------------------------------------------- 1 | import * as Cleave from 'cleave.js/dist/cleave'; 2 | 3 | export { Cleave }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables-bs5/datatables-bootstrap5.js: -------------------------------------------------------------------------------- 1 | import 'datatables.net-bs5/js/dataTables.bootstrap5'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables-buttons/datatables-buttons.js: -------------------------------------------------------------------------------- 1 | import 'datatables.net-buttons/js/dataTables.buttons'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables-select/datatables-select.js: -------------------------------------------------------------------------------- 1 | import 'datatables.net-select/js/dataTables.select'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/rateyo/rateyo.js: -------------------------------------------------------------------------------- 1 | import rateYo from 'rateyo/src/jquery.rateyo'; 2 | 3 | export { rateYo }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/rtl/theme-bordered-dark.scss: -------------------------------------------------------------------------------- 1 | $rtl-support: true; 2 | 3 | @import '../theme-bordered-dark'; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/rtl/theme-raspberry-dark.scss: -------------------------------------------------------------------------------- 1 | $rtl-support: true; 2 | 3 | @import '../theme-raspberry-dark'; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/rtl/theme-semi-dark-dark.scss: -------------------------------------------------------------------------------- 1 | $rtl-support: true; 2 | 3 | @import '../theme-semi-dark-dark'; 4 | -------------------------------------------------------------------------------- /resources/markdown/policy.md: -------------------------------------------------------------------------------- 1 | # Privacy Policy 2 | 3 | Edit this file to define the privacy policy for your application. 4 | -------------------------------------------------------------------------------- /resources/markdown/terms.md: -------------------------------------------------------------------------------- 1 | # Terms of Service 2 | 3 | Edit this file to define the terms of service for your application. 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/animate-on-scroll/animate-on-scroll.js: -------------------------------------------------------------------------------- 1 | import * as AOS from 'aos/dist/aos'; 2 | 3 | export { AOS }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/bootstrap-maxlength/bootstrap-maxlength.js: -------------------------------------------------------------------------------- 1 | import 'bootstrap-maxlength/src/bootstrap-maxlength'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables-rowgroup/datatables.rowgroup.js: -------------------------------------------------------------------------------- 1 | import 'datatables.net-rowgroup/js/dataTables.rowGroup'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables-select-bs5/select.bootstrap5.js: -------------------------------------------------------------------------------- 1 | import 'datatables.net-select-bs5/js/select.bootstrap5'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/nouislider/nouislider.js: -------------------------------------------------------------------------------- 1 | import * as noUiSlider from 'nouislider'; 2 | 3 | export { noUiSlider }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/pickr/pickr.js: -------------------------------------------------------------------------------- 1 | import * as pickr from '@simonwep/pickr/dist/pickr.min'; 2 | 3 | export { pickr }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/select2/select2.js: -------------------------------------------------------------------------------- 1 | import select2 from 'select2/dist/js/select2.full'; 2 | 3 | export { select2 }; 4 | -------------------------------------------------------------------------------- /public/assets/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/favicon/favicon.ico -------------------------------------------------------------------------------- /resources/assets/vendor/libs/apex-charts/apexcharts.js: -------------------------------------------------------------------------------- 1 | import ApexCharts from 'apexcharts-clevision'; 2 | 3 | export { ApexCharts }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/autosize/autosize.js: -------------------------------------------------------------------------------- 1 | import * as autosize from 'autosize/dist/autosize'; 2 | 3 | export { autosize }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/bootstrap-datepicker/bootstrap-datepicker.js: -------------------------------------------------------------------------------- 1 | import 'bootstrap-datepicker/dist/js/bootstrap-datepicker'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables-buttons-bs5/buttons.bootstrap5.js: -------------------------------------------------------------------------------- 1 | import 'datatables.net-buttons-bs5/js/buttons.bootstrap5'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/shepherd/shepherd.js: -------------------------------------------------------------------------------- 1 | import Shepherd from 'shepherd.js/dist/js/shepherd'; 2 | 3 | export { Shepherd }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/sortablejs/sortable.js: -------------------------------------------------------------------------------- 1 | import * as Sortable from 'sortablejs/Sortable'; 2 | 3 | export { Sortable }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables-responsive/datatables.responsive.js: -------------------------------------------------------------------------------- 1 | import 'datatables.net-responsive/js/dataTables.responsive'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables-rowgroup-bs5/rowgroup.bootstrap5.js: -------------------------------------------------------------------------------- 1 | import 'datatables.net-rowgroup-bs5/js/rowGroup.bootstrap5'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/feather-icons/feather.js: -------------------------------------------------------------------------------- 1 | import * as feather from 'feather-icons/dist/feather'; 2 | 3 | export { feather }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/flatpickr/flatpickr.js: -------------------------------------------------------------------------------- 1 | import * as flatpickr from 'flatpickr/dist/flatpickr'; 2 | 3 | export { flatpickr }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/jquery/jquery.js: -------------------------------------------------------------------------------- 1 | import jQuery from 'jquery/dist/jquery'; 2 | 3 | const $ = jQuery; 4 | export { jQuery, $ }; 5 | -------------------------------------------------------------------------------- /public/assets/img/pages/auth-top-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/pages/auth-top-left.png -------------------------------------------------------------------------------- /resources/assets/vendor/libs/bloodhound/bloodhound.js: -------------------------------------------------------------------------------- 1 | import Bloodhound from 'typeahead.js/dist/bloodhound'; 2 | 3 | export { Bloodhound }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/cleavejs/cleave-phone.js: -------------------------------------------------------------------------------- 1 | import * as phone from 'cleave.js/dist/addons/cleave-phone.us'; 2 | 3 | export { phone }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/clipboard/clipboard.js: -------------------------------------------------------------------------------- 1 | import * as ClipboardJS from 'clipboard/dist/clipboard'; 2 | 3 | export { ClipboardJS }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables-fixedcolumns/datatables.fixedcolumns.js: -------------------------------------------------------------------------------- 1 | import 'datatables.net-fixedcolumns/js/dataTables.fixedColumns'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables-fixedheader/datatables.fixedheader.js: -------------------------------------------------------------------------------- 1 | import 'datatables.net-fixedheader/js/dataTables.fixedHeader'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables-responsive-bs5/responsive.bootstrap5.js: -------------------------------------------------------------------------------- 1 | import 'datatables.net-responsive-bs5/js/responsive.bootstrap5'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/core.scss: -------------------------------------------------------------------------------- 1 | @import 'bootstrap'; 2 | @import 'bootstrap-extended'; 3 | @import 'components'; 4 | @import 'colors'; 5 | -------------------------------------------------------------------------------- /resources/views/example-content/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/resources/views/example-content/.DS_Store -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- 1 | merge(['class' => 'dropdown-item']) }}>{{ $slot }} 2 | -------------------------------------------------------------------------------- /public/assets/img/pages/auth-right-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/pages/auth-right-bottom.png -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables-checkboxes-jquery/datatables.checkboxes.js: -------------------------------------------------------------------------------- 1 | import 'jquery-datatables-checkboxes/js/dataTables.checkboxes'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables-fixedheader-bs5/fixedheader.bootstrap5.js: -------------------------------------------------------------------------------- 1 | import 'datatables.net-fixedheader-bs5/js/fixedHeader.bootstrap5'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/typeahead-js/typeahead.js: -------------------------------------------------------------------------------- 1 | import typeahead from 'typeahead.js/dist/typeahead.bundle'; 2 | 3 | export { typeahead }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/rtl/core.scss: -------------------------------------------------------------------------------- 1 | @import 'bootstrap'; 2 | @import 'bootstrap-extended'; 3 | @import 'components'; 4 | @import 'colors'; 5 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/checkbox.blade.php: -------------------------------------------------------------------------------- 1 | merge(['class' => 'form-check-input']) !!}> 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables-fixedcolumns-bs5/fixedcolumns.bootstrap5.js: -------------------------------------------------------------------------------- 1 | import 'datatables.net-fixedcolumns-bs5/js/fixedColumns.bootstrap5'; 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/jquery-repeater/jquery-repeater.js: -------------------------------------------------------------------------------- 1 | import * as repeater from 'jquery.repeater/jquery.repeater'; 2 | 3 | export { repeater }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/numeral/numeral.js: -------------------------------------------------------------------------------- 1 | import * as numeral from 'numeral/numeral'; 2 | import 'numeral/locales'; 3 | 4 | export { numeral }; 5 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/label.blade.php: -------------------------------------------------------------------------------- 1 | @props(['value']) 2 | 3 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/tagify/_mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin tagify-theme($color) { 2 | .tagify--focus { 3 | border-color: $color !important; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /resources/assets/js/app-invoice-print.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Invoice Print 3 | */ 4 | 5 | 'use strict'; 6 | 7 | (function () { 8 | window.print(); 9 | })(); 10 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/resources/assets/vendor/libs/leaflet/images/layers.png -------------------------------------------------------------------------------- /resources/assets/vendor/scss/core-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'bootstrap-dark'; 2 | @import 'bootstrap-extended-dark'; 3 | @import 'components-dark'; 4 | @import 'colors-dark'; 5 | -------------------------------------------------------------------------------- /public/assets/img/illustrations/page-misc-error-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/illustrations/page-misc-error-dark.png -------------------------------------------------------------------------------- /public/assets/img/illustrations/page-misc-error-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/public/assets/img/illustrations/page-misc-error-light.png -------------------------------------------------------------------------------- /resources/assets/vendor/libs/bootstrap-select/bootstrap-select.js: -------------------------------------------------------------------------------- 1 | import bootstrapSelect from 'bootstrap-select/js/bootstrap-select'; 2 | 3 | export { bootstrapSelect }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/dropzone/_mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin dropzone-theme($border) { 2 | .dropzone.dz-drag-hover { 3 | border-color: $border !important; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/resources/assets/vendor/libs/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_bootstrap-extended/forms/_form-text.scss: -------------------------------------------------------------------------------- 1 | // Form Text 2 | // ******************************************************************************* 3 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/rtl/core-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'bootstrap-dark'; 2 | @import 'bootstrap-extended-dark'; 3 | @import 'components-dark'; 4 | @import 'colors-dark'; 5 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/jstree/themes/default/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/resources/assets/vendor/libs/jstree/themes/default/32px.png -------------------------------------------------------------------------------- /resources/assets/vendor/libs/jstree/themes/default/40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/resources/assets/vendor/libs/jstree/themes/default/40px.png -------------------------------------------------------------------------------- /resources/assets/vendor/libs/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/resources/assets/vendor/libs/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /resources/assets/vendor/libs/perfect-scrollbar/perfect-scrollbar.js: -------------------------------------------------------------------------------- 1 | import PerfectScrollbar from 'perfect-scrollbar/dist/perfect-scrollbar'; 2 | 3 | export { PerfectScrollbar }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_bootstrap-extended/_root.scss: -------------------------------------------------------------------------------- 1 | // The color-scheme CSS property https://web.dev/color-scheme/ 2 | :root { 3 | color-scheme: #{$color-scheme}; 4 | } 5 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flag-icons.scss: -------------------------------------------------------------------------------- 1 | $flag-icons-path: '../fonts/flags'; 2 | 3 | @import '~flag-icons/sass/flag-icons'; 4 | 5 | .fi { 6 | vertical-align: middle; 7 | } 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/resources/assets/vendor/libs/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /resources/assets/vendor/libs/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/resources/assets/vendor/libs/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /resources/assets/vendor/libs/chartjs-plugin-style/chartjs-plugin-style.js: -------------------------------------------------------------------------------- 1 | import * as chartjsStyle from 'chartjs-plugin-style/dist/chartjs-plugin-style'; 2 | 3 | export { chartjsStyle }; 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/jstree/themes/default-dark/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/resources/assets/vendor/libs/jstree/themes/default-dark/32px.png -------------------------------------------------------------------------------- /resources/assets/vendor/libs/jstree/themes/default-dark/40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/resources/assets/vendor/libs/jstree/themes/default-dark/40px.png -------------------------------------------------------------------------------- /resources/assets/vendor/libs/jstree/themes/default/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/resources/assets/vendor/libs/jstree/themes/default/throbber.gif -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_components/mixins/_misc.scss: -------------------------------------------------------------------------------- 1 | // SVG Color 2 | @mixin template-svg-color($background) { 3 | .svg-illustration svg { 4 | fill: $background; 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/button.blade.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/jstree/themes/default-dark/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/laravel-init/HEAD/resources/assets/vendor/libs/jstree/themes/default-dark/throbber.gif -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/input.blade.php: -------------------------------------------------------------------------------- 1 | @props(['disabled' => false]) 2 | 3 | merge(['class' => 'form-control']) !!}> 4 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables-checkboxes-jquery/datatables.checkboxes.scss: -------------------------------------------------------------------------------- 1 | @import '../../scss/_custom-variables/libs'; 2 | @import '~jquery-datatables-checkboxes/css/dataTables.checkboxes'; 3 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/highlight/highlight.js: -------------------------------------------------------------------------------- 1 | // var hljs = require('highlight.js/lib/index.js') 2 | 3 | // export { hljs } 4 | import hljs from 'highlight.js/lib/index'; 5 | 6 | export { hljs }; 7 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.blade.php diff=html 4 | *.css diff=css 5 | *.html diff=html 6 | *.md diff=markdown 7 | *.php diff=php 8 | 9 | /.github export-ignore 10 | CHANGELOG.md export-ignore 11 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/danger-button.blade.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/secondary-button.blade.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/views/example-content/layouts-example/layouts-blank.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts/layoutMaster') 2 | 3 | @section('title', 'Blank layout - Layouts') 4 | 5 | @section('content') 6 |

Blank Page

7 | @endsection 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/pickr/_pickr-nano.scss: -------------------------------------------------------------------------------- 1 | @import '~@simonwep/pickr/src/scss/themes/nano.scss'; 2 | 3 | @include app-rtl(false) { 4 | .pcr-app[data-theme='nano'] .pcr-selection .pcr-color-preview { 5 | margin-right: $padding; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/input-error.blade.php: -------------------------------------------------------------------------------- 1 | @props(['for']) 2 | 3 | @error($for) 4 | merge(['class' => 'invalid-feedback']) }} role="alert"> 5 | {{ $message }} 6 | 7 | @enderror 8 | -------------------------------------------------------------------------------- /resources/assets/js/extended-ui-media-player.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Media Player 3 | */ 4 | 5 | 'use strict'; 6 | 7 | (function () { 8 | const videoPlayer = new Plyr('#plyr-video-player'); 9 | const audioPlayer = new Plyr('#plyr-audio-player'); 10 | })(); 11 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/i18n/i18n.js: -------------------------------------------------------------------------------- 1 | import i18next from 'i18next'; 2 | import i18nextXHRBackend from 'i18next-xhr-backend'; 3 | import languageDetector from 'i18next-browser-languagedetector'; 4 | 5 | export { i18next, i18nextXHRBackend, languageDetector }; 6 | -------------------------------------------------------------------------------- /resources/views/content/pages/pages-page2.blade.php: -------------------------------------------------------------------------------- 1 | @php 2 | $configData = Helper::appClasses(); 3 | @endphp 4 | 5 | @extends('layouts/layoutMaster') 6 | 7 | @section('title', 'Page 2') 8 | 9 | @section('content') 10 |

Page 2

11 | @endsection 12 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/popper/popper.js: -------------------------------------------------------------------------------- 1 | import Popper from '@popperjs/core/dist/umd/popper.min'; 2 | 3 | // Required to enable animations on dropdowns/tooltips/popovers 4 | // Popper.Defaults.modifiers.computeStyle.gpuAcceleration = false 5 | 6 | export { Popper }; 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/js/form-basic-inputs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Form Basic Inputs 3 | */ 4 | 5 | 'use strict'; 6 | 7 | (function () { 8 | // Indeterminate checkbox 9 | const checkbox = document.getElementById('defaultCheck2'); 10 | checkbox.indeterminate = true; 11 | })(); 12 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/nl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/rtl/_bootstrap-extended.scss: -------------------------------------------------------------------------------- 1 | $rtl-support: true; 2 | 3 | @import '../bootstrap-extended'; 4 | 5 | // RTL Utilities 6 | @include rtl-only { 7 | @import '../_bootstrap-extended/utilities-rtl'; 8 | @import '~bootstrap/scss/utilities/api'; 9 | } 10 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/nl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_theme/_pages.scss: -------------------------------------------------------------------------------- 1 | // Page mixins 2 | // ******************************************************************************* 3 | 4 | @import '../pages/mixins'; 5 | 6 | @mixin template-pages-theme($background, $color: null) { 7 | // include page related mixins 8 | } 9 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/swiper/_mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin swiper-theme($background) { 2 | .swiper-pagination-bullet.swiper-pagination-bullet-active, 3 | .swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill { 4 | background: $background !important; 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/rtl/_bootstrap-extended-dark.scss: -------------------------------------------------------------------------------- 1 | $rtl-support: true; 2 | 3 | @import '../bootstrap-extended-dark'; 4 | 5 | // RTL Utilities 6 | @include rtl-only { 7 | @import '../_bootstrap-extended/utilities-rtl'; 8 | @import '~bootstrap/scss/utilities/api'; 9 | } 10 | -------------------------------------------------------------------------------- /resources/views/content/pages/pages-home.blade.php: -------------------------------------------------------------------------------- 1 | @php 2 | $configData = Helper::appClasses(); 3 | @endphp 4 | 5 | @extends('layouts/layoutMaster') 6 | 7 | @section('title', 'Home') 8 | 9 | @section('content') 10 |

Home Page

11 |

Cambios desde local

12 | @endsection 13 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_bootstrap-extended/_close.scss: -------------------------------------------------------------------------------- 1 | // Close buttons 2 | // ******************************************************************************* 3 | 4 | .close:focus { 5 | outline: 0; 6 | } 7 | 8 | @include rtl-only { 9 | .close { 10 | float: left; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/es-ca.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/es-ca.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_bootstrap-extended/_type.scss: -------------------------------------------------------------------------------- 1 | // Type 2 | // 3 | 4 | @include rtl-only { 5 | .list-inline, 6 | .list-unstyled { 7 | padding-right: 0; 8 | } 9 | .list-inline-item:not(:last-child) { 10 | margin-right: 0; 11 | margin-left: $list-inline-padding; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/pages/_mixins.scss: -------------------------------------------------------------------------------- 1 | /* 2 | * Pages Mixins 3 | */ 4 | @import '../../scss/_bootstrap-extended/functions'; 5 | 6 | @mixin icon-theme($color) { 7 | .icon-card.active { 8 | outline: 1px solid $color; 9 | i, 10 | svg { 11 | color: $color; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_components/_blockui.scss: -------------------------------------------------------------------------------- 1 | // Block UI 2 | // ******************************************************************************* 3 | 4 | .blockUI { 5 | &.blockOverlay, 6 | &.blockMsg { 7 | z-index: $zindex-modal + 1 !important; 8 | color: $white !important; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/action-section.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{ $title }} 4 |
5 |
6 |

7 | {{ $description }} 8 |

9 | {{ $content }} 10 |
11 |
12 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_components/_mixins.scss: -------------------------------------------------------------------------------- 1 | @import 'mixins/navbar'; 2 | @import 'mixins/footer'; 3 | @import 'mixins/menu'; 4 | @import 'mixins/avatar'; 5 | @import 'mixins/text-divider'; 6 | @import 'mixins/timeline'; 7 | @import 'mixins/treeview'; 8 | @import 'mixins/switch'; 9 | @import 'mixins/misc'; 10 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/nav-link.blade.php: -------------------------------------------------------------------------------- 1 | @props(['active']) 2 | 3 | @php 4 | $classes = $active ?? false ? 'nav-link active fw-bolder' : 'nav-link'; 5 | @endphp 6 | 7 | 12 | -------------------------------------------------------------------------------- /app/Http/Controllers/pages/Page2.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/Http/Controllers/pages/HomePage.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/sl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/fontawesome.scss: -------------------------------------------------------------------------------- 1 | $fa-font-path: 'fontawesome'; 2 | $fa-font-size-base: 16px; 3 | 4 | @import '~@fortawesome/fontawesome-free/scss/fontawesome'; 5 | @import '~@fortawesome/fontawesome-free/scss/regular'; 6 | @import '~@fortawesome/fontawesome-free/scss/solid'; 7 | @import '~@fortawesome/fontawesome-free/scss/brands'; 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = space 8 | indent_size = 2 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | 17 | [docker-compose.yml] 18 | indent_size = 4 19 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/views/_partials/macros.blade.php: -------------------------------------------------------------------------------- 1 | El Rincón de Isma Avatar 2 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_bootstrap-extended/mixins/_badge.scss: -------------------------------------------------------------------------------- 1 | // Badges 2 | // ******************************************************************************* 3 | 4 | // Size 5 | @mixin badge-size($badge-height, $badge-width, $badge-font-size) { 6 | height: $badge-height; 7 | width: $badge-width; 8 | @include font-size($badge-font-size); 9 | } 10 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/js/offcanvas-send-invoice.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Send Invoice Offcanvas 3 | */ 4 | 5 | 'use strict'; 6 | 7 | (function () { 8 | // Send invoice textarea 9 | const invoiceMsg = document.querySelector('#invoice-message'); 10 | 11 | const trimMsg = invoiceMsg.textContent.replace(/^\s+|\s+$/gm, ''); 12 | 13 | invoiceMsg.value = trimMsg; 14 | })(); 15 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/tt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/sr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/jquery-timepicker/_mixins.scss: -------------------------------------------------------------------------------- 1 | @import '../../scss/_bootstrap-extended/_functions'; 2 | 3 | @mixin timepicker-theme($background, $color: null) { 4 | li.ui-timepicker-selected, 5 | .ui-timepicker-list .ui-timepicker-selected:hover { 6 | color: $background !important; 7 | background: rgba($background, 0.08) !important; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/sr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/mu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/sj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/tt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/ee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/mu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/sj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_components/_drag-drop.scss: -------------------------------------------------------------------------------- 1 | // * RTL 2 | // ******************************************************************************* 3 | 4 | @include rtl-only { 5 | #sortable-cards { 6 | flex-direction: row-reverse; 7 | } 8 | #image-list-1, 9 | #image-list-2 { 10 | flex-direction: row-reverse; 11 | justify-content: flex-end; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /docker/7.4/start-container: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | if [ ! -z "$WWWUSER" ]; then 4 | usermod -u $WWWUSER sail 5 | fi 6 | 7 | if [ ! -d /.composer ]; then 8 | mkdir /.composer 9 | fi 10 | 11 | chmod -R ugo+rw /.composer 12 | 13 | if [ $# -gt 0 ]; then 14 | exec gosu $WWWUSER "$@" 15 | else 16 | /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf 17 | fi 18 | -------------------------------------------------------------------------------- /docker/8.0/start-container: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | if [ ! -z "$WWWUSER" ]; then 4 | usermod -u $WWWUSER sail 5 | fi 6 | 7 | if [ ! -d /.composer ]; then 8 | mkdir /.composer 9 | fi 10 | 11 | chmod -R ugo+rw /.composer 12 | 13 | if [ $# -gt 0 ]; then 14 | exec gosu $WWWUSER "$@" 15 | else 16 | /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf 17 | fi 18 | -------------------------------------------------------------------------------- /docker/8.1/start-container: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | if [ ! -z "$WWWUSER" ]; then 4 | usermod -u $WWWUSER sail 5 | fi 6 | 7 | if [ ! -d /.composer ]; then 8 | mkdir /.composer 9 | fi 10 | 11 | chmod -R ugo+rw /.composer 12 | 13 | if [ $# -gt 0 ]; then 14 | exec gosu $WWWUSER "$@" 15 | else 16 | /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf 17 | fi 18 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/sweetalert2/sweetalert2.js: -------------------------------------------------------------------------------- 1 | import * as SwalPlugin from 'sweetalert2/dist/sweetalert2'; 2 | 3 | const Swal = SwalPlugin.mixin({ 4 | buttonsStyling: false, 5 | customClass: { 6 | confirmButton: 'btn btn-primary', 7 | cancelButton: 'btn btn-label-danger', 8 | denyButton: 'btn btn-label-secondary' 9 | } 10 | }); 11 | 12 | export { Swal }; 13 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/pages/wizard-ex-checkout.scss: -------------------------------------------------------------------------------- 1 | // * Wizard checkout 2 | // ******************************************************************************* 3 | @import '../_custom-variables/pages'; 4 | 5 | $checkout-wizard-header-width: 800px !default; 6 | 7 | #wizard-checkout { 8 | .bs-stepper-header { 9 | max-width: $checkout-wizard-header-width; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /resources/menu/verticalMenu.json: -------------------------------------------------------------------------------- 1 | { 2 | "menu": [ 3 | { 4 | "url": "/", 5 | "name": "Home", 6 | "icon": "menu-icon tf-icons bx bx-home-circle", 7 | "slug": "pages-home" 8 | }, 9 | { 10 | "url": "/page-2", 11 | "icon": "menu-icon tf-icons bx bx-file", 12 | "name": "Page 2", 13 | "slug": "pages-page-2" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/authentication-card.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | {{ $logo }} 6 |
7 | 8 |
9 | {{ $slot }} 10 |
11 |
12 |
13 |
14 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/pdfmake/pdfmake.js: -------------------------------------------------------------------------------- 1 | // include font file with pdf to make it work 2 | // var pdfMake = require('pdfmake/build/pdfmake.js') 3 | // var pdfFonts = require('pdfmake/build/vfs_fonts.js') 4 | // pdfMake.vfs = pdfFonts.pdfMake.vfs 5 | import * as pdfMake from 'pdfmake/build/pdfmake'; 6 | import * as pdfFonts from 'pdfmake/build/vfs_fonts'; 7 | 8 | pdfMake.vfs = pdfFonts.pdfMake.vfs; 9 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/qa.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/cd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/qa.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/ee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/datatables-responsive-bs5/_mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin bs-datatables-theme($background) { 2 | // Style for responsive icon 3 | table.dataTable.dtr-column > tbody > tr > td.control:before, 4 | table.dataTable.dtr-column > tbody > tr > th.control:before { 5 | background-color: $background; 6 | border: 2px solid $rgba-to-hex-bg; 7 | box-shadow: 0 0 3px $gray-800; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /app/Http/Controllers/pages/MiscError.php: -------------------------------------------------------------------------------- 1 | 'blank']; 13 | return view('content.pages.pages-misc-error', ['pageConfigs' => $pageConfigs]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/bf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_bootstrap-extended/forms/_form-control.scss: -------------------------------------------------------------------------------- 1 | // Form control 2 | // ******************************************************************************* 3 | 4 | .form-control { 5 | &::placeholder { 6 | transition: $input-placeholder-transition; 7 | } 8 | &:focus::placeholder { 9 | transform: $input-placeholder-transform; 10 | transition: $input-placeholder-transition; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "arrowParens": "avoid", 3 | "bracketSpacing": true, 4 | "htmlWhitespaceSensitivity": "css", 5 | "insertPragma": false, 6 | "jsxSingleQuote": true, 7 | "printWidth": 120, 8 | "proseWrap": "preserve", 9 | "quoteProps": "as-needed", 10 | "requirePragma": false, 11 | "semi": true, 12 | "singleQuote": true, 13 | "tabWidth": 2, 14 | "trailingComma": "none", 15 | "useTabs": false 16 | } 17 | -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/lc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/lc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/mk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/to.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/pickr/_pickr-monolith.scss: -------------------------------------------------------------------------------- 1 | @import '~@simonwep/pickr/src/scss/themes/monolith.scss'; 2 | 3 | @include app-rtl(false) { 4 | .pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-preview .pcr-last-color { 5 | border-radius: 0 0.15em 0.15em 0; 6 | } 7 | .pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-preview .pcr-current-color { 8 | border-radius: 0.15em 0 0 0.15em; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /resources/views/layouts/layoutMaster.blade.php: -------------------------------------------------------------------------------- 1 | @isset($pageConfigs) 2 | {!! Helper::updatePageConfig($pageConfigs) !!} 3 | @endisset 4 | @php 5 | $configData = Helper::appClasses(); 6 | @endphp 7 | 8 | @isset($configData["layout"]) 9 | @include((( $configData["layout"] === 'horizontal') ? 'layouts.horizontalLayout' : 10 | (( $configData["layout"] === 'blank') ? 'layouts.blankLayout' : 'layouts.contentNavbarLayout') )) 11 | @endisset 12 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/bf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/to.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_bootstrap-extended/_forms.scss: -------------------------------------------------------------------------------- 1 | // Forms 2 | // ***************************************************************** 3 | 4 | @import 'forms/labels'; 5 | @import 'forms/form-text'; 6 | @import 'forms/form-control'; 7 | @import 'forms/form-select'; 8 | @import 'forms/form-check'; 9 | @import 'forms/form-range'; 10 | @import 'forms/input-group'; 11 | @import 'forms/floating-labels'; 12 | @import 'forms/validation'; 13 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_bootstrap-extended/mixins/_progress.scss: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | // ******************************************************************************* 3 | 4 | @mixin template-progress-bar-theme($background, $color: null) { 5 | .progress-bar { 6 | background-color: $background; 7 | color: if($color, $color, color-contrast($background)); 8 | box-shadow: 0 2px 4px 0 rgba($background, 0.4); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | 'blank']; 13 | return view('content.authentications.auth-login-basic', ['pageConfigs' => $pageConfigs]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_components/_include.scss: -------------------------------------------------------------------------------- 1 | // Include 2 | // ******************************************************************************* 3 | 4 | @import '../_bootstrap-extended/include'; 5 | 6 | //Mixins 7 | @import './_mixins'; // Components mixins 8 | 9 | //Components variables 10 | @import '../_custom-variables/components'; // Components variable (for customization purpose) 11 | @import 'variables'; // Components variable 12 | -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | create(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/jm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/jm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/ss.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/Actions/Fortify/PasswordValidationRules.php: -------------------------------------------------------------------------------- 1 | 'blank']; 13 | return view('content.authentications.auth-register-basic', ['pageConfigs' => $pageConfigs]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /docker/7.4/supervisord.conf: -------------------------------------------------------------------------------- 1 | [supervisord] 2 | nodaemon=true 3 | user=root 4 | logfile=/var/log/supervisor/supervisord.log 5 | pidfile=/var/run/supervisord.pid 6 | 7 | [program:php] 8 | command=/usr/bin/php -d variables_order=EGPCS /var/www/html/artisan serve --host=0.0.0.0 --port=80 9 | user=sail 10 | environment=LARAVEL_SAIL="1" 11 | stdout_logfile=/dev/stdout 12 | stdout_logfile_maxbytes=0 13 | stderr_logfile=/dev/stderr 14 | stderr_logfile_maxbytes=0 15 | -------------------------------------------------------------------------------- /docker/8.0/supervisord.conf: -------------------------------------------------------------------------------- 1 | [supervisord] 2 | nodaemon=true 3 | user=root 4 | logfile=/var/log/supervisor/supervisord.log 5 | pidfile=/var/run/supervisord.pid 6 | 7 | [program:php] 8 | command=/usr/bin/php -d variables_order=EGPCS /var/www/html/artisan serve --host=0.0.0.0 --port=80 9 | user=sail 10 | environment=LARAVEL_SAIL="1" 11 | stdout_logfile=/dev/stdout 12 | stdout_logfile_maxbytes=0 13 | stderr_logfile=/dev/stderr 14 | stderr_logfile_maxbytes=0 15 | -------------------------------------------------------------------------------- /docker/8.1/supervisord.conf: -------------------------------------------------------------------------------- 1 | [supervisord] 2 | nodaemon=true 3 | user=root 4 | logfile=/var/log/supervisor/supervisord.log 5 | pidfile=/var/run/supervisord.pid 6 | 7 | [program:php] 8 | command=/usr/bin/php -d variables_order=EGPCS /var/www/html/artisan serve --host=0.0.0.0 --port=80 9 | user=sail 10 | environment=LARAVEL_SAIL="1" 11 | stdout_logfile=/dev/stdout 12 | stdout_logfile_maxbytes=0 13 | stderr_logfile=/dev/stderr 14 | stderr_logfile_maxbytes=0 15 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/dropdown.blade.php: -------------------------------------------------------------------------------- 1 | @props(['id' => 'navbarDropdown']) 2 | 3 | 12 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/gm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/mk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/ss.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/views/layouts/blankLayout.blade.php: -------------------------------------------------------------------------------- 1 | @isset($pageConfigs) 2 | {!! Helper::updatePageConfig($pageConfigs) !!} 3 | @endisset 4 | @php 5 | $configData = Helper::appClasses(); 6 | 7 | /* Display elements */ 8 | $customizerHidden = ($customizerHidden ?? ''); 9 | 10 | @endphp 11 | 12 | @extends('layouts/commonMaster' ) 13 | 14 | @section('layoutContent') 15 | 16 | 17 | @yield('content') 18 | 19 | 20 | @endsection 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /public/hot 3 | /public/storage 4 | /storage/*.key 5 | /vendor 6 | .env.backup 7 | .phpunit.result.cache 8 | docker-compose.override.yml 9 | Homestead.json 10 | Homestead.yaml 11 | npm-debug.log 12 | yarn-error.log 13 | /.idea 14 | /.vscode 15 | /public/css 16 | /public/js 17 | /public/mix-manifest.json 18 | # But not these files... 19 | !/public/assets/* 20 | /public/assets/js 21 | /public/assets/css 22 | /public/assets/vendor 23 | composer.lock -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/sn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/pages/page-account-settings.scss: -------------------------------------------------------------------------------- 1 | // * Account Settings 2 | // ******************************************************************************* 3 | 4 | @import '../_custom-variables/pages'; 5 | @import '../_bootstrap-extended/include'; 6 | 7 | .api-key-actions { 8 | position: absolute !important; 9 | top: 0.75rem; 10 | @include app-ltr() { 11 | right: 0.5rem; 12 | } 13 | @include app-rtl() { 14 | left: 0.5rem; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/validation-errors.blade.php: -------------------------------------------------------------------------------- 1 | @if ($errors->any()) 2 |
merge(['class' => 'alert alert-danger']) !!} role="alert"> 3 |
4 |
{{ __('Whoops! Something went wrong.') }}
5 | 6 |
    7 | @foreach ($errors->all() as $error) 8 |
  • {{ $error }}
  • 9 | @endforeach 10 |
11 |
12 |
13 | @endif 14 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/spinkit/spinkit.scss: -------------------------------------------------------------------------------- 1 | @import '~spinkit/spinkit'; 2 | :root { 3 | --sk-size: 30px; 4 | --sk-color: #fff; 5 | } 6 | 7 | .sk-wave { 8 | width: 40px; 9 | white-space: nowrap; 10 | } 11 | 12 | .sk-fading-circle .sk-circle { 13 | margin-top: 0; 14 | margin-bottom: 0; 15 | } 16 | 17 | .sk-wave { 18 | width: 40px; 19 | white-space: nowrap; 20 | } 21 | 22 | .sk-fading-circle .sk-circle { 23 | margin-top: 0; 24 | margin-bottom: 0; 25 | } 26 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/mr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/sn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | public function hosts() 15 | { 16 | return [ 17 | $this->allSubdomainsOfApplicationUrl(), 18 | ]; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /resources/views/api/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts/layoutMaster') 2 | 3 | @php 4 | $breadcrumbs = [['link' => 'home', 'name' => 'Home'], ['name' => 'API Tokens']]; 5 | @endphp 6 | 7 | @section('title', 'API Tokens') 8 | 9 | 10 | @section('page-style') 11 | {{-- Page Css files --}} 12 | 13 | @endsection 14 | 15 | @section('content') 16 | @livewire('api.api-token-manager') 17 | @endsection 18 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | 'current_password', 16 | 'password', 17 | 'password_confirmation', 18 | ]; 19 | } 20 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/mr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_custom-variables/_components.scss: -------------------------------------------------------------------------------- 1 | // ================================================================================================ 2 | // ? TIP: It is recommended to use this file for overriding component variables (_components/_variables.scss). 3 | // Copy and paste variables as needed, modify their values, and remove the !default flag. 4 | // ================================================================================================ 5 | 6 | // $menu-width: 14rem; -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 18 | 19 | $response->assertStatus(200); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/lt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/lt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/spinkit/_mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin spinkit-theme($background) { 2 | .sk-primary.sk-plane, 3 | .sk-primary .sk-chase-dot:before, 4 | .sk-primary .sk-bounce-dot, 5 | .sk-primary .sk-wave-rect, 6 | .sk-primary.sk-pulse, 7 | .sk-primary .sk-swing-dot, 8 | .sk-primary .sk-circle-dot:before, 9 | .sk-primary .sk-circle-fade-dot:before, 10 | .sk-primary .sk-grid-cube, 11 | .sk-primary .sk-fold-cube:before { 12 | background-color: $background; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /app/Actions/Jetstream/DeleteUser.php: -------------------------------------------------------------------------------- 1 | deleteProfilePhoto(); 18 | $user->tokens->each->delete(); 19 | $user->delete(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_custom-variables/_components-dark.scss: -------------------------------------------------------------------------------- 1 | // ========================================================================================================== 2 | // ? TIP: It is recommended to use this file for overriding component dark variables (_components/_variables-dark.scss). 3 | // Copy and paste variables as needed, modify their values, and remove the !default flag. 4 | // ========================================================================================================== 5 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 19 | 20 | return $app; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/assets/js/ui-popover.js: -------------------------------------------------------------------------------- 1 | // /** 2 | // * UI Tooltips & Popovers 3 | // */ 4 | 5 | 'use strict'; 6 | 7 | (function () { 8 | const popoverTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')); 9 | const popoverList = popoverTriggerList.map(function (popoverTriggerEl) { 10 | // added { html: true, sanitize: false } option to render button in content area of popover 11 | return new bootstrap.Popover(popoverTriggerEl, { html: true, sanitize: false }); 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_components/_include-dark.scss: -------------------------------------------------------------------------------- 1 | // Include Dark 2 | // ******************************************************************************* 3 | 4 | @import '../_bootstrap-extended/include-dark'; 5 | 6 | // Mixins 7 | @import './_mixins'; // Components mixins 8 | 9 | //Variables 10 | @import '../_custom-variables/components-dark'; // Components custom dark variable (for customization purpose) 11 | @import 'variables-dark'; // Components dark variable 12 | @import 'variables'; // Components variable 13 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_custom-variables/_libs.scss: -------------------------------------------------------------------------------- 1 | // ================================================================================================ 2 | // ? TIP: It is recommended to use this file for overriding any library variables from (libs/) folder. 3 | // Copy and paste variables as needed, modify their values, and remove the !default flag. 4 | // ================================================================================================ 5 | 6 | @import 'support'; 7 | 8 | // $flatpickr-content-padding: 0.5rem; -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_custom-variables/_pages.scss: -------------------------------------------------------------------------------- 1 | // ================================================================================================ 2 | // ? TIP: It is recommended to use this file for overriding any pages variables from the (pages/) folder. 3 | // Copy and paste variables as needed, modify their values, and remove the !default flag. 4 | // ================================================================================================ 5 | 6 | @import 'support'; 7 | 8 | // $calender-sidebar-width: 20rem; -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/sl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/nouislider/_mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin nouislider-variant($background) { 2 | .noUi-connect { 3 | background: $background !important; 4 | } 5 | .noUi-touch-area { 6 | background-color: $background !important ; 7 | } 8 | } 9 | 10 | @mixin nouislider-theme($background) { 11 | .noUi-primary .noUi-base { 12 | .noUi-connect { 13 | background: $background !important; 14 | } 15 | .noUi-touch-area { 16 | background-color: $background !important ; 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/pages/page-misc.scss: -------------------------------------------------------------------------------- 1 | // * Miscellaneous 2 | // ******************************************************************************* 3 | 4 | @import '../_bootstrap-extended/include'; 5 | 6 | .misc-wrapper { 7 | display: flex; 8 | flex-direction: column; 9 | justify-content: center; 10 | align-items: center; 11 | min-height: calc( 12 | 100vh - calc(#{$container-padding-y} * 2) 13 | ); // ?we have added container-p-y class to add padding on top & bottom 14 | text-align: center; 15 | } 16 | -------------------------------------------------------------------------------- /resources/assets/js/ui-navbar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * UI Navbar 3 | */ 4 | 'use strict'; 5 | 6 | (function () { 7 | // If layout is RTL add .dropdown-menu-end class to .dropdown-menu 8 | if (isRtl) { 9 | Helpers._addClass('dropdown-menu-end', document.querySelectorAll('.dropdown-menu')); 10 | } 11 | 12 | // Mega dropdown 13 | const megaDropdown = document.querySelectorAll('.nav-link.mega-dropdown'); 14 | if (megaDropdown) { 15 | megaDropdown.forEach(e => { 16 | new MegaDropdown(e); 17 | }); 18 | } 19 | })(); 20 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_components/mixins/_text-divider.scss: -------------------------------------------------------------------------------- 1 | // Text Divider 2 | // ******************************************************************************* 3 | 4 | @mixin template-text-divider-variant($divider-color, $background) { 5 | $divider-selector: if($divider-color== '', '', '#{$divider-color}'); 6 | .divider { 7 | &#{$divider-selector} { 8 | .divider-text { 9 | &:before, 10 | &:after { 11 | border-color: $background; 12 | } 13 | } 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/la.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_custom-variables/_bootstrap-extended-dark.scss: -------------------------------------------------------------------------------- 1 | // =================================================================================================================== 2 | // ? TIP: It is recommended to use this file for overriding bootstrap extended dark variables (_bootstrap-extended/_variables-dark.scss). 3 | // Copy and paste variables as needed, modify their values, and remove the !default flag. 4 | // =================================================================================================================== 5 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/gy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/pw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_bootstrap-extended/forms/_labels.scss: -------------------------------------------------------------------------------- 1 | // Labels 2 | // ******************************************************************************* 3 | 4 | .form-label, 5 | .col-form-label { 6 | font-size: $form-label-font-size; 7 | text-transform: $form-label-text-transform; 8 | letter-spacing: $form-label-letter-spacing; 9 | } 10 | // Default (vertical ) form label size 11 | .form-label-lg { 12 | @include font-size($input-font-size-lg); 13 | } 14 | 15 | .form-label-sm { 16 | @include font-size($input-font-size-sm); 17 | } 18 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/az.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/cg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/vc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/jp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/action-message.blade.php: -------------------------------------------------------------------------------- 1 | @props(['on']) 2 | 3 | 11 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/gy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/pickr/_pickr-classic.scss: -------------------------------------------------------------------------------- 1 | @import '~@simonwep/pickr/src/scss/themes/classic.scss'; 2 | @import '../../scss/_custom-variables/libs'; 3 | 4 | @include app-rtl(false) { 5 | .pcr-app[data-theme='classic'] .pcr-selection .pcr-color-preview { 6 | margin-right: inherit; 7 | margin-left: 0.75em; 8 | } 9 | 10 | .pcr-app[data-theme='classic'] .pcr-selection .pcr-color-chooser, 11 | .pcr-app[data-theme='classic'] .pcr-selection .pcr-color-opacity { 12 | margin-left: inherit; 13 | margin-right: 0.75em; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_custom-variables/_bootstrap-extended.scss: -------------------------------------------------------------------------------- 1 | // =================================================================================================================== 2 | // ? TIP: It is recommended to use this file for overriding bootstrap extended variables (_bootstrap-extended/_variables.scss). 3 | // Copy and paste variables as needed, modify their values, and remove the !default flag. 4 | // =================================================================================================================== 5 | 6 | // $font-size-root: 14px; -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/cz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/jp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/az.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/cz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_components.scss: -------------------------------------------------------------------------------- 1 | @import '_components/include'; 2 | 3 | // Import components scss 4 | @import '_components/base'; 5 | @import '_components/common'; 6 | @import '_components/menu'; 7 | @import '_components/layout'; 8 | @import '_components/app-brand'; 9 | @import '_components/custom-options'; 10 | @import '_components/switch'; 11 | @import '_components/avatar'; 12 | @import '_components/timeline'; 13 | @import '_components/blockui'; 14 | @import '_components/drag-drop'; 15 | @import '_components/text-divider'; 16 | @import '_components/footer'; 17 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/cg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/vn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_bootstrap-extended/mixins/_modal.scss: -------------------------------------------------------------------------------- 1 | // Modal 2 | // ******************************************************************************* 3 | 4 | @mixin template-modal-onboarding-theme($background, $color) { 5 | .modal-onboarding { 6 | .carousel-indicators { 7 | [data-bs-target] { 8 | background-color: $background; 9 | } 10 | } 11 | } 12 | .carousel-control-prev, 13 | .carousel-control-next { 14 | color: $background; 15 | &:hover, 16 | &:focus { 17 | color: $background; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/so.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/vn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/so.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/bootstrap-select/_mixins.scss: -------------------------------------------------------------------------------- 1 | @import '../../scss/_bootstrap-extended/functions'; 2 | 3 | @mixin bs-select-theme($background, $color: null) { 4 | .bootstrap-select { 5 | .dropdown-menu.inner a[aria-selected='true'] { 6 | background: rgba($background, 0.08) !important; 7 | color: $background !important; 8 | } 9 | // Fix: To add focus border, .bootstrap-select adding border but not able to update as we can not have the focus on div 10 | .dropdown-toggle.show { 11 | border-color: $background; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_components-dark.scss: -------------------------------------------------------------------------------- 1 | @import '_components/include-dark'; 2 | 3 | // Import components scss 4 | @import '_components/base'; 5 | @import '_components/common'; 6 | @import '_components/menu'; 7 | @import '_components/layout'; 8 | @import '_components/app-brand'; 9 | @import '_components/custom-options'; 10 | @import '_components/switch'; 11 | @import '_components/avatar'; 12 | @import '_components/timeline'; 13 | @import '_components/blockui'; 14 | @import '_components/drag-drop'; 15 | @import '_components/text-divider'; 16 | @import '_components/footer'; 17 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/form-section.blade.php: -------------------------------------------------------------------------------- 1 | @props(['submit']) 2 | 3 |
4 |
5 | {{ $title }} 6 |
7 |
8 |
9 | 10 |

11 | {{ $description }} 12 |

13 | 14 | {{ $form }} 15 | 16 | @if (isset($actions)) 17 |
18 | {{ $actions }} 19 |
20 | @endif 21 |
22 |
23 |
24 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/la.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/sd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_components/mixins/_treeview.scss: -------------------------------------------------------------------------------- 1 | // Treeview 2 | // ******************************************************************************* 3 | 4 | // Treeview click 5 | @mixin template-treeview-clicked-bg($background) { 6 | .jstree-default { 7 | .jstree-wholerow-clicked, 8 | .jstree-wholerow-hovered { 9 | background: mix($white, $background, 85%); 10 | } 11 | } 12 | .jstree-default-dark { 13 | .jstree-wholerow-hovered, 14 | .jstree-wholerow-clicked { 15 | background: mix($dark, $background, 55%); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- 1 | expectsJson()) { 18 | return route('login'); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/pw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/bh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/gb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/sd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/bj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/cd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/gb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_bootstrap-extended/_include.scss: -------------------------------------------------------------------------------- 1 | //Functions 2 | @import '~bootstrap/scss/functions'; // Bootstrap core functions 3 | @import 'functions'; // Bootstrap extended functions 4 | 5 | //Variables 6 | @import '../_custom-variables/bootstrap-extended'; // Bootstrap extended custom variable (for customization purpose) 7 | @import 'variables'; // Bootstrap extended variable 8 | @import '~bootstrap/scss/variables'; // Bootstrap core variable 9 | 10 | //Mixins 11 | @import '~bootstrap/scss/mixins'; // Bootstrap core mixins 12 | @import 'mixins'; // Bootstrap extended mixins 13 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/kw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/bj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/kw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/confirmation-modal.blade.php: -------------------------------------------------------------------------------- 1 | @props(['id' => null, 'maxWidth' => null]) 2 | 3 | 4 | 16 | 17 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/bh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/is.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/is.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/dialog-modal.blade.php: -------------------------------------------------------------------------------- 1 | @props(['id' => null, 'maxWidth' => null]) 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/ly.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/sy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/fo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_bootstrap-extended/mixins/_toasts.scss: -------------------------------------------------------------------------------- 1 | // * Toast 2 | // ******************************************************************************* 3 | 4 | @mixin template-toast-variant($parent, $background, $color: null) { 5 | $color: if($color, $color, color-contrast($background)); 6 | 7 | .toast, 8 | .bs-toast { 9 | .toast-header#{$parent} { 10 | background-color: $background; 11 | color: $color; 12 | } 13 | } 14 | } 15 | 16 | @mixin template-toast-theme($parent, $background, $color: null) { 17 | @include template-toast-variant($parent, $background, $color); 18 | } 19 | -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- 1 | app->environment('production')) { 28 | \URL::forceScheme('https'); 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/ly.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_components/mixins/_avatar.scss: -------------------------------------------------------------------------------- 1 | // Avatar 2 | // ******************************************************************************* 3 | 4 | @mixin template-avatar-style($height, $width, $font-size, $status-indicator-position: 2px) { 5 | width: $width; 6 | height: $height; 7 | 8 | .avatar-initial { 9 | font-size: $font-size; 10 | } 11 | 12 | &.avatar-online, 13 | &.avatar-offline, 14 | &.avatar-away, 15 | &.avatar-busy { 16 | &:after { 17 | width: $width * 0.2; 18 | height: $height * 0.2; 19 | right: $status-indicator-position; 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/sy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/assets/vendor/libs/fullcalendar/fullcalendar.js: -------------------------------------------------------------------------------- 1 | import { Calendar } from '@fullcalendar/core'; 2 | import dayGridPlugin from '@fullcalendar/daygrid'; 3 | import interactionPlugin from '@fullcalendar/interaction'; 4 | import listPlugin from '@fullcalendar/list'; 5 | import timegridPlugin from '@fullcalendar/timegrid'; 6 | import timelinePlugin from '@fullcalendar/timeline'; 7 | 8 | const calendarPlugins = { 9 | dayGrid: dayGridPlugin, 10 | interaction: interactionPlugin, 11 | list: listPlugin, 12 | timeGrid: timegridPlugin, 13 | timeline: timelinePlugin 14 | }; 15 | 16 | export { Calendar, calendarPlugins }; 17 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/ps.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/gm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/tz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/bs.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 18 | }); 19 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/ax.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/cl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/fo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/bb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/bs.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/bb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/ps.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- 1 | get('/user', function (Request $request) { 18 | return $request->user(); 19 | }); 20 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/cl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/cu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/sc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/gg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/sc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/tl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/bv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/dj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/ax.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/bv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_bootstrap-extended/_include-dark.scss: -------------------------------------------------------------------------------- 1 | //Functions 2 | @import '~bootstrap/scss/functions'; // Bootstrap core functions 3 | @import 'functions'; // Bootstrap extended functions 4 | 5 | //Variables 6 | @import '../_custom-variables/bootstrap-extended-dark'; // Bootstrap extended custom dark variable (for customization purpose) 7 | @import 'variables-dark'; // Bootstrap extended dark variable 8 | @import 'variables'; // Bootstrap extended variable 9 | @import '~bootstrap/scss/variables'; // Bootstrap core variable 10 | 11 | //Mixins 12 | @import '~bootstrap/scss/mixins'; // Bootstrap core mixins 13 | @import 'mixins'; // Bootstrap extended mixins 14 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_components/mixins/_app-brand.scss: -------------------------------------------------------------------------------- 1 | // Within menu 2 | @mixin template-app-brand-collapsed() { 3 | .app-brand { 4 | width: $menu-collapsed-width; 5 | } 6 | 7 | .app-brand-logo, 8 | .app-brand-link, 9 | .app-brand-text { 10 | margin-right: auto; 11 | margin-left: auto; 12 | } 13 | 14 | .app-brand-logo ~ .app-brand-text, 15 | .app-brand .layout-menu-toggle { 16 | overflow: hidden; 17 | text-overflow: ellipsis; 18 | white-space: nowrap; 19 | opacity: 0; 20 | } 21 | 22 | .app-brand-img { 23 | display: none; 24 | } 25 | 26 | .app-brand-img-collapsed { 27 | display: block; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/dj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/assets/vendor/scss/_bootstrap-extended/_mixins.scss: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // 3 | // Template mixins (custom and overrides) 4 | 5 | @import 'mixins/accordion'; 6 | @import 'mixins/alert'; 7 | @import 'mixins/badge'; 8 | @import 'mixins/buttons'; 9 | @import 'mixins/list-group'; 10 | @import 'mixins/modal'; 11 | @import 'mixins/navs'; 12 | @import 'mixins/pagination'; 13 | @import 'mixins/progress'; 14 | @import 'mixins/popover'; 15 | @import 'mixins/toasts'; 16 | @import 'mixins/tooltip'; 17 | @import 'mixins/caret'; 18 | @import 'mixins/dropdown'; 19 | @import 'mixins/forms'; 20 | @import 'mixins/table-variants'; 21 | @import 'mixins/misc'; // layout, text directions & colors 22 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 19 | })->purpose('Display an inspiring quote'); 20 | -------------------------------------------------------------------------------- /resources/assets/js/extended-ui-misc-clipboardjs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Clipboard 3 | */ 4 | 5 | 'use strict'; 6 | 7 | (function () { 8 | const clipboardList = [].slice.call(document.querySelectorAll('.clipboard-btn')); 9 | if (ClipboardJS) { 10 | clipboardList.map(function (clipboardEl) { 11 | const clipboard = new ClipboardJS(clipboardEl); 12 | clipboard.on('success', function (e) { 13 | if (e.action == 'copy') { 14 | toastr['success']('', 'Copied to Clipboard!!'); 15 | } 16 | }); 17 | }); 18 | } else { 19 | clipboardList.map(function (clipboardEl) { 20 | clipboardEl.setAttribute('disabled', true); 21 | }); 22 | } 23 | })(); 24 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/1x1/gg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /resources/assets/vendor/fonts/flags/4x3/tl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | --------------------------------------------------------------------------------