├── public ├── favicon.ico ├── assets │ ├── js │ │ ├── custom.js │ │ └── .DS_Store │ ├── css │ │ ├── custom.css │ │ └── .DS_Store │ ├── .DS_Store │ ├── scss │ │ ├── bootstrap │ │ │ ├── scss │ │ │ │ ├── helpers │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _text-truncation.scss │ │ │ │ │ ├── _visually-hidden.scss │ │ │ │ │ ├── _stretched-link.scss │ │ │ │ │ └── _colored-links.scss │ │ │ │ ├── mixins │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _lists.scss │ │ │ │ │ ├── _color-scheme.scss │ │ │ │ │ ├── _text-truncate.scss │ │ │ │ │ ├── _resize.scss │ │ │ │ │ ├── _container.scss │ │ │ │ │ ├── _alert.scss │ │ │ │ │ ├── _image.scss │ │ │ │ │ └── _box-shadow.scss │ │ │ │ ├── _helpers.scss │ │ │ │ ├── forms │ │ │ │ │ └── _form-text.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _transitions.scss │ │ │ │ └── bootstrap-utilities.scss │ │ │ └── .DS_Store │ │ ├── .DS_Store │ │ └── app │ │ │ ├── .DS_Store │ │ │ └── styles.scss │ ├── images │ │ ├── .DS_Store │ │ ├── user.png │ │ ├── doc-thumb-1.jpg │ │ ├── doc-thumb-2.jpg │ │ ├── users │ │ │ ├── .DS_Store │ │ │ ├── user-1.jpg │ │ │ ├── user-2.jpg │ │ │ ├── user-3.jpg │ │ │ ├── user-4.jpg │ │ │ ├── user-5.jpg │ │ │ ├── user-6.jpg │ │ │ ├── user-7.jpg │ │ │ ├── user-8.jpg │ │ │ └── user-9.jpg │ │ ├── profiles │ │ │ ├── profile-1.png │ │ │ ├── profile-2.png │ │ │ ├── profile-3.png │ │ │ ├── profile-4.png │ │ │ ├── profile-5.png │ │ │ └── profile-6.png │ │ └── background │ │ │ ├── background-1.jpg │ │ │ ├── background-2.jpg │ │ │ └── background-3.jpg │ ├── img │ │ ├── brand_01.png │ │ ├── brand_02.png │ │ ├── brand_03.png │ │ ├── brand_04.png │ │ ├── favicon.ico │ │ ├── shop_01.jpg │ │ ├── shop_02.jpg │ │ ├── shop_03.jpg │ │ ├── shop_04.jpg │ │ ├── shop_05.jpg │ │ ├── shop_06.jpg │ │ ├── shop_07.jpg │ │ ├── shop_08.jpg │ │ ├── shop_09.jpg │ │ ├── shop_10.jpg │ │ ├── shop_11.jpg │ │ ├── apple-icon.png │ │ ├── ajax-loader.gif │ │ ├── banner_img_01.jpg │ │ ├── banner_img_02.jpg │ │ ├── banner_img_03.jpg │ │ ├── category_img_01.jpg │ │ ├── category_img_02.jpg │ │ ├── category_img_03.jpg │ │ ├── feature_prod_01.jpg │ │ ├── feature_prod_02.jpg │ │ ├── feature_prod_03.jpg │ │ ├── product_single_01.jpg │ │ ├── product_single_02.jpg │ │ ├── product_single_03.jpg │ │ ├── product_single_04.jpg │ │ ├── product_single_05.jpg │ │ ├── product_single_06.jpg │ │ ├── product_single_07.jpg │ │ ├── product_single_08.jpg │ │ ├── product_single_09.jpg │ │ └── product_single_10.jpg │ ├── plugins │ │ ├── .DS_Store │ │ ├── bootstrap │ │ │ └── .DS_Store │ │ └── fontawesome │ │ │ ├── .DS_Store │ │ │ ├── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-solid-900.woff2 │ │ │ └── fa-regular-400.woff2 │ │ │ ├── less │ │ │ ├── _screen-reader.less │ │ │ ├── _fixed-width.less │ │ │ ├── v4-shims.less │ │ │ ├── _core.less │ │ │ ├── _animated.less │ │ │ ├── _list.less │ │ │ └── _bordered-pulled.less │ │ │ ├── scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── v4-shims.scss │ │ │ ├── _animated.scss │ │ │ ├── _list.scss │ │ │ ├── _core.scss │ │ │ ├── _larger.scss │ │ │ ├── fontawesome.scss │ │ │ └── _bordered-pulled.scss │ │ │ ├── attribution.js │ │ │ └── svgs │ │ │ ├── solid │ │ │ ├── square-full.svg │ │ │ ├── egg.svg │ │ │ ├── circle.svg │ │ │ ├── bookmark.svg │ │ │ ├── sort-down.svg │ │ │ ├── sort-up.svg │ │ │ ├── stop.svg │ │ │ ├── square.svg │ │ │ ├── play.svg │ │ │ ├── minus.svg │ │ │ ├── window-minimize.svg │ │ │ ├── caret-down.svg │ │ │ ├── volume-off.svg │ │ │ ├── cheese.svg │ │ │ ├── folder.svg │ │ │ ├── ice-cream.svg │ │ │ ├── mouse.svg │ │ │ ├── comment-alt.svg │ │ │ ├── star-half.svg │ │ │ ├── sd-card.svg │ │ │ ├── caret-right.svg │ │ │ ├── genderless.svg │ │ │ ├── hockey-puck.svg │ │ │ ├── adjust.svg │ │ │ ├── caret-up.svg │ │ │ ├── columns.svg │ │ │ ├── bread-slice.svg │ │ │ ├── caret-left.svg │ │ │ ├── location-arrow.svg │ │ │ ├── map-marker.svg │ │ │ ├── border-all.svg │ │ │ ├── dot-circle.svg │ │ │ ├── minus-circle.svg │ │ │ ├── mobile.svg │ │ │ ├── stop-circle.svg │ │ │ ├── tablet.svg │ │ │ ├── voicemail.svg │ │ │ ├── window-maximize.svg │ │ │ ├── paragraph.svg │ │ │ ├── play-circle.svg │ │ │ ├── file.svg │ │ │ ├── glass-whiskey.svg │ │ │ ├── angle-left.svg │ │ │ ├── angle-up.svg │ │ │ ├── dice-one.svg │ │ │ ├── slash.svg │ │ │ ├── step-backward.svg │ │ │ ├── step-forward.svg │ │ │ ├── sticky-note.svg │ │ │ ├── toggle-on.svg │ │ │ ├── angle-down.svg │ │ │ ├── angle-right.svg │ │ │ ├── sort.svg │ │ │ ├── grip-lines.svg │ │ │ ├── table.svg │ │ │ ├── bolt.svg │ │ │ ├── burn.svg │ │ │ ├── chalkboard.svg │ │ │ ├── filter.svg │ │ │ ├── heart.svg │ │ │ ├── italic.svg │ │ │ ├── glass-martini.svg │ │ │ ├── grip-lines-vertical.svg │ │ │ ├── lock.svg │ │ │ ├── minus-square.svg │ │ │ ├── pause.svg │ │ │ ├── seedling.svg │ │ │ ├── tv.svg │ │ │ ├── ellipsis-v.svg │ │ │ ├── meh-blank.svg │ │ │ ├── paper-plane.svg │ │ │ ├── battery-empty.svg │ │ │ ├── box.svg │ │ │ ├── clock.svg │ │ │ ├── comment.svg │ │ │ ├── ellipsis-h.svg │ │ │ ├── forward.svg │ │ │ ├── qrcode.svg │ │ │ ├── record-vinyl.svg │ │ │ ├── suitcase.svg │ │ │ ├── caret-square-down.svg │ │ │ ├── neuter.svg │ │ │ ├── sign.svg │ │ │ ├── utensil-spoon.svg │ │ │ ├── backward.svg │ │ │ ├── desktop.svg │ │ │ ├── equals.svg │ │ │ ├── trash.svg │ │ │ ├── coffee.svg │ │ │ ├── cross.svg │ │ │ ├── long-arrow-alt-up.svg │ │ │ ├── map.svg │ │ │ ├── plug.svg │ │ │ ├── plus.svg │ │ │ ├── video.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half.svg │ │ │ ├── chart-area.svg │ │ │ ├── clone.svg │ │ │ ├── folder-minus.svg │ │ │ ├── heart-broken.svg │ │ │ ├── icicles.svg │ │ │ ├── long-arrow-alt-down.svg │ │ │ ├── long-arrow-alt-left.svg │ │ │ ├── long-arrow-alt-right.svg │ │ │ ├── music.svg │ │ │ ├── pen.svg │ │ │ ├── arrow-alt-circle-up.svg │ │ │ ├── battery-quarter.svg │ │ │ ├── chevron-left.svg │ │ │ ├── hard-hat.svg │ │ │ ├── industry.svg │ │ │ ├── tenge.svg │ │ │ ├── user-alt.svg │ │ │ ├── arrow-alt-circle-right.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-up.svg │ │ │ ├── battery-three-quarters.svg │ │ │ ├── cloud.svg │ │ │ ├── map-marker-alt.svg │ │ │ ├── user-tie.svg │ │ │ ├── wave-square.svg │ │ │ ├── arrow-alt-circle-down.svg │ │ │ ├── arrow-alt-circle-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── glass-martini-alt.svg │ │ │ ├── star.svg │ │ │ ├── user.svg │ │ │ ├── laptop.svg │ │ │ ├── mountain.svg │ │ │ ├── shield-alt.svg │ │ │ ├── archive.svg │ │ │ ├── chevron-circle-up.svg │ │ │ ├── ethernet.svg │ │ │ ├── mitten.svg │ │ │ ├── phone-alt.svg │ │ │ ├── briefcase.svg │ │ │ ├── brush.svg │ │ │ ├── check.svg │ │ │ ├── chevron-circle-right.svg │ │ │ ├── compact-disc.svg │ │ │ ├── dice-two.svg │ │ │ ├── divide.svg │ │ │ ├── exclamation.svg │ │ │ ├── fast-backward.svg │ │ │ ├── fire.svg │ │ │ ├── gem.svg │ │ │ ├── hospital-symbol.svg │ │ │ ├── meh.svg │ │ │ ├── chevron-circle-down.svg │ │ │ └── chevron-circle-left.svg │ │ │ ├── brands │ │ │ ├── houzz.svg │ │ │ ├── flipboard.svg │ │ │ ├── unsplash.svg │ │ │ ├── yandex-international.svg │ │ │ ├── ethereum.svg │ │ │ ├── bandcamp.svg │ │ │ ├── black-tie.svg │ │ │ ├── strava.svg │ │ │ ├── microsoft.svg │ │ │ ├── gitter.svg │ │ │ ├── vuejs.svg │ │ │ ├── css3.svg │ │ │ ├── think-peaks.svg │ │ │ ├── windows.svg │ │ │ ├── y-combinator.svg │ │ │ ├── mix.svg │ │ │ ├── google-drive.svg │ │ │ ├── uikit.svg │ │ │ ├── viacoin.svg │ │ │ ├── angular.svg │ │ │ ├── patreon.svg │ │ │ ├── modx.svg │ │ │ ├── npm.svg │ │ │ ├── deviantart.svg │ │ │ ├── facebook-f.svg │ │ │ ├── servicestack.svg │ │ │ ├── dyalog.svg │ │ │ ├── figma.svg │ │ │ ├── instalod.svg │ │ │ ├── adn.svg │ │ │ ├── dochub.svg │ │ │ ├── hacker-news.svg │ │ │ ├── firstdraft.svg │ │ │ ├── artstation.svg │ │ │ ├── html5.svg │ │ │ ├── magento.svg │ │ │ ├── twitch.svg │ │ │ ├── yahoo.svg │ │ │ ├── yandex.svg │ │ │ ├── autoprefixer.svg │ │ │ ├── jira.svg │ │ │ ├── monero.svg │ │ │ ├── buysellads.svg │ │ │ ├── cloudsmith.svg │ │ │ ├── maxcdn.svg │ │ │ ├── tiktok.svg │ │ │ ├── stack-overflow.svg │ │ │ ├── bitbucket.svg │ │ │ ├── dropbox.svg │ │ │ ├── stack-exchange.svg │ │ │ ├── css3-alt.svg │ │ │ ├── dashcube.svg │ │ │ ├── kaggle.svg │ │ │ ├── google.svg │ │ │ ├── elementor.svg │ │ │ ├── google-play.svg │ │ │ ├── korvue.svg │ │ │ ├── telegram-plane.svg │ │ │ ├── cuttlefish.svg │ │ │ ├── gg.svg │ │ │ ├── gratipay.svg │ │ │ ├── openid.svg │ │ │ ├── product-hunt.svg │ │ │ ├── fulcrum.svg │ │ │ ├── sourcetree.svg │ │ │ ├── discourse.svg │ │ │ ├── facebook-square.svg │ │ │ ├── facebook.svg │ │ │ ├── rockrms.svg │ │ │ ├── unity.svg │ │ │ ├── hotjar.svg │ │ │ ├── deezer.svg │ │ │ └── gitlab.svg │ │ │ └── regular │ │ │ ├── window-minimize.svg │ │ │ ├── bookmark.svg │ │ │ ├── circle.svg │ │ │ ├── window-maximize.svg │ │ │ ├── square.svg │ │ │ ├── star-half.svg │ │ │ ├── file.svg │ │ │ ├── folder.svg │ │ │ ├── window-restore.svg │ │ │ ├── stop-circle.svg │ │ │ ├── calendar.svg │ │ │ ├── play-circle.svg │ │ │ └── sticky-note.svg │ └── webfonts │ │ ├── slick.eot │ │ ├── slick.ttf │ │ ├── slick.woff │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.ttf │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-solid-900.woff2 │ │ └── fa-regular-400.woff2 ├── robots.txt ├── vendor │ └── livewire │ │ └── manifest.json └── mix-manifest.json ├── database ├── .gitignore └── seeders │ └── DatabaseSeeder.php ├── bootstrap └── cache │ └── .gitignore ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore └── framework │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── cache │ ├── data │ │ └── .gitignore │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── resources ├── views │ ├── vendor │ │ └── jetstream │ │ │ └── components │ │ │ ├── section-border.blade.php │ │ │ ├── checkbox.blade.php │ │ │ ├── dropdown-link.blade.php │ │ │ ├── label.blade.php │ │ │ ├── button.blade.php │ │ │ ├── input.blade.php │ │ │ ├── danger-button.blade.php │ │ │ ├── secondary-button.blade.php │ │ │ ├── authentication-card-logo.blade.php │ │ │ ├── input-error.blade.php │ │ │ ├── nav-link.blade.php │ │ │ ├── authentication-card.blade.php │ │ │ ├── dropdown.blade.php │ │ │ ├── validation-errors.blade.php │ │ │ ├── section-title.blade.php │ │ │ └── application-mark.blade.php │ ├── layouts │ │ └── frontend.blade.php │ ├── dashboard.blade.php │ ├── api │ │ └── index.blade.php │ ├── components │ │ ├── my-component.blade.php │ │ └── head │ │ │ └── tinymce-config.blade.php │ ├── terms.blade.php │ ├── policy.blade.php │ └── myform.blade.php ├── markdown │ ├── policy.md │ └── terms.md ├── js │ └── app.js └── sass │ ├── app.scss │ └── _variables.scss ├── .gitattributes ├── webpack.config.js ├── tests ├── TestCase.php ├── Unit │ └── ExampleTest.php ├── Feature │ └── ExampleTest.php └── CreatesApplication.php ├── .styleci.yml ├── app ├── Models │ ├── Sfrom.php │ ├── proImage.php │ └── Product.php ├── Http │ ├── Controllers │ │ ├── AdminController.php │ │ ├── Controller.php │ │ └── CompController.php │ ├── Livewire │ │ └── AllProduct.php │ └── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── TrustHosts.php │ │ └── TrimStrings.php ├── View │ └── Components │ │ ├── AppLayout.php │ │ └── GuestLayout.php ├── Actions │ ├── Fortify │ │ └── PasswordValidationRules.php │ └── Jetstream │ │ └── DeleteUser.php └── Providers │ └── BroadcastServiceProvider.php ├── .gitignore └── .editorconfig /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/js/custom.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/assets/css/custom.css: -------------------------------------------------------------------------------- 1 | /* 2 | Custom Css 3 | */ 4 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /public/vendor/livewire/manifest.json: -------------------------------------------------------------------------------- 1 | {"/livewire.js":"/livewire.js?id=f092ba91a90e56843ffc"} -------------------------------------------------------------------------------- /public/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/.DS_Store -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/scss/helpers/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /public/assets/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/css/.DS_Store -------------------------------------------------------------------------------- /public/assets/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/js/.DS_Store -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/js/app.js": "/js/app.js", 3 | "/css/app.css": "/css/app.css" 4 | } 5 | -------------------------------------------------------------------------------- /public/assets/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/.DS_Store -------------------------------------------------------------------------------- /public/assets/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/user.png -------------------------------------------------------------------------------- /public/assets/img/brand_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/brand_01.png -------------------------------------------------------------------------------- /public/assets/img/brand_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/brand_02.png -------------------------------------------------------------------------------- /public/assets/img/brand_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/brand_03.png -------------------------------------------------------------------------------- /public/assets/img/brand_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/brand_04.png -------------------------------------------------------------------------------- /public/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/favicon.ico -------------------------------------------------------------------------------- /public/assets/img/shop_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/shop_01.jpg -------------------------------------------------------------------------------- /public/assets/img/shop_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/shop_02.jpg -------------------------------------------------------------------------------- /public/assets/img/shop_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/shop_03.jpg -------------------------------------------------------------------------------- /public/assets/img/shop_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/shop_04.jpg -------------------------------------------------------------------------------- /public/assets/img/shop_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/shop_05.jpg -------------------------------------------------------------------------------- /public/assets/img/shop_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/shop_06.jpg -------------------------------------------------------------------------------- /public/assets/img/shop_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/shop_07.jpg -------------------------------------------------------------------------------- /public/assets/img/shop_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/shop_08.jpg -------------------------------------------------------------------------------- /public/assets/img/shop_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/shop_09.jpg -------------------------------------------------------------------------------- /public/assets/img/shop_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/shop_10.jpg -------------------------------------------------------------------------------- /public/assets/img/shop_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/shop_11.jpg -------------------------------------------------------------------------------- /public/assets/scss/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/scss/.DS_Store -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/section-border.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | -------------------------------------------------------------------------------- /public/assets/img/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/apple-icon.png -------------------------------------------------------------------------------- /public/assets/plugins/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/plugins/.DS_Store -------------------------------------------------------------------------------- /public/assets/scss/app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/scss/app/.DS_Store -------------------------------------------------------------------------------- /public/assets/webfonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/webfonts/slick.eot -------------------------------------------------------------------------------- /public/assets/webfonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/webfonts/slick.ttf -------------------------------------------------------------------------------- /public/assets/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/ajax-loader.gif -------------------------------------------------------------------------------- /public/assets/img/banner_img_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/banner_img_01.jpg -------------------------------------------------------------------------------- /public/assets/img/banner_img_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/banner_img_02.jpg -------------------------------------------------------------------------------- /public/assets/img/banner_img_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/banner_img_03.jpg -------------------------------------------------------------------------------- /public/assets/webfonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/webfonts/slick.woff -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /public/assets/images/doc-thumb-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/doc-thumb-1.jpg -------------------------------------------------------------------------------- /public/assets/images/doc-thumb-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/doc-thumb-2.jpg -------------------------------------------------------------------------------- /public/assets/images/users/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/users/.DS_Store -------------------------------------------------------------------------------- /public/assets/images/users/user-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/users/user-1.jpg -------------------------------------------------------------------------------- /public/assets/images/users/user-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/users/user-2.jpg -------------------------------------------------------------------------------- /public/assets/images/users/user-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/users/user-3.jpg -------------------------------------------------------------------------------- /public/assets/images/users/user-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/users/user-4.jpg -------------------------------------------------------------------------------- /public/assets/images/users/user-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/users/user-5.jpg -------------------------------------------------------------------------------- /public/assets/images/users/user-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/users/user-6.jpg -------------------------------------------------------------------------------- /public/assets/images/users/user-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/users/user-7.jpg -------------------------------------------------------------------------------- /public/assets/images/users/user-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/users/user-8.jpg -------------------------------------------------------------------------------- /public/assets/images/users/user-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/users/user-9.jpg -------------------------------------------------------------------------------- /public/assets/img/category_img_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/category_img_01.jpg -------------------------------------------------------------------------------- /public/assets/img/category_img_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/category_img_02.jpg -------------------------------------------------------------------------------- /public/assets/img/category_img_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/category_img_03.jpg -------------------------------------------------------------------------------- /public/assets/img/feature_prod_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/feature_prod_01.jpg -------------------------------------------------------------------------------- /public/assets/img/feature_prod_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/feature_prod_02.jpg -------------------------------------------------------------------------------- /public/assets/img/feature_prod_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/feature_prod_03.jpg -------------------------------------------------------------------------------- /public/assets/img/product_single_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/product_single_01.jpg -------------------------------------------------------------------------------- /public/assets/img/product_single_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/product_single_02.jpg -------------------------------------------------------------------------------- /public/assets/img/product_single_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/product_single_03.jpg -------------------------------------------------------------------------------- /public/assets/img/product_single_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/product_single_04.jpg -------------------------------------------------------------------------------- /public/assets/img/product_single_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/product_single_05.jpg -------------------------------------------------------------------------------- /public/assets/img/product_single_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/product_single_06.jpg -------------------------------------------------------------------------------- /public/assets/img/product_single_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/product_single_07.jpg -------------------------------------------------------------------------------- /public/assets/img/product_single_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/product_single_08.jpg -------------------------------------------------------------------------------- /public/assets/img/product_single_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/product_single_09.jpg -------------------------------------------------------------------------------- /public/assets/img/product_single_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/img/product_single_10.jpg -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/scss/bootstrap/.DS_Store -------------------------------------------------------------------------------- /public/assets/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /public/assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /public/assets/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /public/assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /public/assets/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /public/assets/plugins/bootstrap/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/plugins/bootstrap/.DS_Store -------------------------------------------------------------------------------- /public/assets/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /public/assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /public/assets/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /public/assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /public/assets/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /public/assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | 3 | import Alpine from 'alpinejs'; 4 | 5 | window.Alpine = Alpine; 6 | 7 | Alpine.start(); -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /public/assets/images/profiles/profile-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/profiles/profile-1.png -------------------------------------------------------------------------------- /public/assets/images/profiles/profile-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/profiles/profile-2.png -------------------------------------------------------------------------------- /public/assets/images/profiles/profile-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/profiles/profile-3.png -------------------------------------------------------------------------------- /public/assets/images/profiles/profile-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/profiles/profile-4.png -------------------------------------------------------------------------------- /public/assets/images/profiles/profile-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/profiles/profile-5.png -------------------------------------------------------------------------------- /public/assets/images/profiles/profile-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/profiles/profile-6.png -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/plugins/fontawesome/.DS_Store -------------------------------------------------------------------------------- /public/assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /resources/views/layouts/frontend.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | @yield("mainContent") 4 | 5 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/checkbox.blade.php: -------------------------------------------------------------------------------- 1 | merge(['class' => 'form-check-input']) !!}> 2 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- 1 | merge(['class' => 'dropdown-item px-4']) }}>{{ $slot }} 2 | -------------------------------------------------------------------------------- /public/assets/images/background/background-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/background/background-1.jpg -------------------------------------------------------------------------------- /public/assets/images/background/background-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/background/background-2.jpg -------------------------------------------------------------------------------- /public/assets/images/background/background-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/images/background/background-3.jpg -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/label.blade.php: -------------------------------------------------------------------------------- 1 | @props(['value']) 2 | 3 | 6 | -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/scss/helpers/_text-truncation.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Text truncation 3 | // 4 | 5 | .text-truncate { 6 | @include text-truncate(); 7 | } 8 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/plugins/fontawesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/plugins/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/plugins/fontawesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/plugins/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/plugins/fontawesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/plugins/fontawesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/plugins/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/plugins/fontawesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/plugins/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/plugins/fontawesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/plugins/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/lara73/master/public/assets/plugins/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/less/_screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/button.blade.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/less/_fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | text-align: center; 5 | width: (20em / 16); 6 | } 7 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | text-align: center; 5 | width: $fa-fw-width; 6 | } 7 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/input.blade.php: -------------------------------------------------------------------------------- 1 | @props(['disabled' => false]) 2 | 3 | merge(['class' => 'form-control']) !!}> 4 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only; } 5 | .sr-only-focusable { @include sr-only-focusable; } 6 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | 3 | module.exports = { 4 | resolve: { 5 | alias: { 6 | '@': path.resolve('resources/js'), 7 | }, 8 | }, 9 | }; 10 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/danger-button.blade.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/secondary-button.blade.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/authentication-card-logo.blade.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/scss/helpers/_visually-hidden.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Visually hidden 3 | // 4 | 5 | .visually-hidden, 6 | .visually-hidden-focusable:not(:focus):not(:focus-within) { 7 | @include visually-hidden(); 8 | } 9 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

4 | {{ __('Dashboard') }} 5 |

6 |
7 | 8 | 9 | -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/scss/mixins/_color-scheme.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start mixin-color-scheme 2 | @mixin color-scheme($name) { 3 | @media (prefers-color-scheme: #{$name}) { 4 | @content; 5 | } 6 | } 7 | // scss-docs-end mixin-color-scheme 8 | -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/scss/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | // Text truncate 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-truncate() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | // Fonts 2 | @import url('https://fonts.googleapis.com/css?family=Nunito'); 3 | 4 | // Variables 5 | @import 'variables'; 6 | 7 | // Bootstrap 8 | @import '~bootstrap/scss/bootstrap'; 9 | 10 | // Custom 11 | @import "custom"; 12 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | php: 2 | preset: laravel 3 | version: 8 4 | disabled: 5 | - no_unused_imports 6 | finder: 7 | not-name: 8 | - index.php 9 | - server.php 10 | js: 11 | finder: 12 | not-name: 13 | - webpack.mix.js 14 | css: true 15 | -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 5 | resize: $direction; // Options: horizontal, vertical, both 6 | } 7 | -------------------------------------------------------------------------------- /app/Models/Sfrom.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

4 | {{ __('API Tokens') }} 5 |

6 |
7 | 8 |
9 | @livewire('api.api-token-manager') 10 |
11 | -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/scss/forms/_form-text.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Form text 3 | // 4 | 5 | .form-text { 6 | margin-top: $form-text-margin-top; 7 | @include font-size($form-text-font-size); 8 | font-style: $form-text-font-style; 9 | font-weight: $form-text-font-weight; 10 | color: $form-text-color; 11 | } 12 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- 1 | @import "forms/labels"; 2 | @import "forms/form-text"; 3 | @import "forms/form-control"; 4 | @import "forms/form-select"; 5 | @import "forms/form-check"; 6 | @import "forms/form-range"; 7 | @import "forms/floating-labels"; 8 | @import "forms/input-group"; 9 | @import "forms/validation"; 10 | -------------------------------------------------------------------------------- /.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 = 4 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 | -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/scss/helpers/_stretched-link.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Stretched link 3 | // 4 | 5 | .stretched-link { 6 | &::#{$stretched-link-pseudo-element} { 7 | position: absolute; 8 | top: 0; 9 | right: 0; 10 | bottom: 0; 11 | left: 0; 12 | z-index: $stretched-link-z-index; 13 | content: ""; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/scss/mixins/_container.scss: -------------------------------------------------------------------------------- 1 | // Container mixins 2 | 3 | @mixin make-container($gutter: $container-padding-x) { 4 | width: 100%; 5 | padding-right: var(--#{$variable-prefix}gutter-x, #{$gutter}); 6 | padding-left: var(--#{$variable-prefix}gutter-x, #{$gutter}); 7 | margin-right: auto; 8 | margin-left: auto; 9 | } 10 | -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/houzz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/egg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start alert-variant-mixin 2 | @mixin alert-variant($background, $border, $color) { 3 | color: $color; 4 | @include gradient-bg($background); 5 | border-color: $border; 6 | 7 | .alert-link { 8 | color: shade-color($color, 20%); 9 | } 10 | } 11 | // scss-docs-end alert-variant-mixin 12 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/nav-link.blade.php: -------------------------------------------------------------------------------- 1 | @props(['active']) 2 | 3 | @php 4 | $classes = ($active ?? false) 5 | ? 'nav-link active font-weight-bolder' 6 | : 'nav-link'; 7 | @endphp 8 | 9 | 14 | -------------------------------------------------------------------------------- /app/Http/Livewire/AllProduct.php: -------------------------------------------------------------------------------- 1 | products = Product::all(); 14 | return view('livewire.all-product'); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/flipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/unsplash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | create(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/less/_core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}, .fas, .far, .fal, .fad, .fab { 5 | -moz-osx-font-smoothing: grayscale; 6 | -webkit-font-smoothing: antialiased; 7 | display: inline-block; 8 | font-style: normal; 9 | font-variant: normal; 10 | text-rendering: auto; 11 | line-height: 1; 12 | } 13 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/yandex-international.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/ethereum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/bandcamp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/black-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/regular/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/sort-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/sort-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/components/my-component.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 11 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/strava.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/microsoft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/caret-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/volume-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/css3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/cheese.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- 1 | // Row 2 | // 3 | // Rows contain your columns. 4 | 5 | @if $enable-grid-classes { 6 | .row { 7 | @include make-row(); 8 | 9 | > * { 10 | @include make-col-ready(); 11 | } 12 | } 13 | } 14 | 15 | 16 | // Columns 17 | // 18 | // Common styles for small and large grid columns 19 | 20 | @if $enable-grid-classes { 21 | @include make-grid-columns(); 22 | } 23 | -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- 1 | // Body 2 | $body-bg: #f8fafc; 3 | 4 | // Typography 5 | $font-family-sans-serif: 'Nunito', sans-serif; 6 | $font-size-base: 0.9rem; 7 | $line-height-base: 1.6; 8 | 9 | // Colors 10 | $blue: #3490dc; 11 | $indigo: #6574cd; 12 | $purple: #9561e2; 13 | $pink: #f66d9b; 14 | $red: #e3342f; 15 | $orange: #f6993f; 16 | $yellow: #ffed4a; 17 | $green: #38c172; 18 | $teal: #4dc0b5; 19 | $cyan: #6cb2eb; 20 | -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/less/_animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .@{fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 100% { 17 | transform: rotate(360deg); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/ice-cream.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/scss/helpers/_colored-links.scss: -------------------------------------------------------------------------------- 1 | @each $color, $value in $theme-colors { 2 | .link-#{$color} { 3 | color: $value; 4 | 5 | @if $link-shade-percentage != 0 { 6 | &:hover, 7 | &:focus { 8 | color: if(color-contrast($value) == $color-contrast-light, shade-color($value, $link-shade-percentage), tint-color($value, $link-shade-percentage)); 9 | } 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/think-peaks.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/windows.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/y-combinator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .#{$fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 17 | 100% { 18 | transform: rotate(360deg); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/mix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/mouse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | li { position: relative; } 10 | } 11 | 12 | .@{fa-css-prefix}-li { 13 | left: -@fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: @fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: $fa-li-width * 5/4; 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .#{$fa-css-prefix}-li { 13 | left: -$fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: $fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/google-drive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/comment-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/authentication-card.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | {{ $logo }} 6 |
7 | 8 |
9 | {{ $slot }} 10 |
11 |
12 |
13 |
-------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/dropdown.blade.php: -------------------------------------------------------------------------------- 1 | @props(['id']) 2 | 3 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/sd-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/scss/app/styles.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Portal - Bootstrap 5 Admin Dashboard Template for Developers 3 | * Version: 2.0 4 | * Author: Xiaoying Riley 5 | * Copyright: 3rd Wave Media Ltd. 6 | * Website: http://themes.3rdwavemedia.com/ 7 | * Twitter: @3rdwave_themes 8 | */ 9 | 10 | @import "mixins"; 11 | @import "base"; 12 | @import "header"; 13 | @import "sidepanel"; 14 | @import "app"; 15 | @import "auth"; 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/scss/_transitions.scss: -------------------------------------------------------------------------------- 1 | .fade { 2 | @include transition($transition-fade); 3 | 4 | &:not(.show) { 5 | opacity: 0; 6 | } 7 | } 8 | 9 | // scss-docs-start collapse-classes 10 | .collapse { 11 | &:not(.show) { 12 | display: none; 13 | } 14 | } 15 | 16 | .collapsing { 17 | height: 0; 18 | overflow: hidden; 19 | @include transition($transition-collapse); 20 | } 21 | // scss-docs-end collapse-classes 22 | -------------------------------------------------------------------------------- /app/Actions/Fortify/PasswordValidationRules.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/viacoin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/regular/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/regular/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/caret-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/genderless.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/hockey-puck.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/angular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/patreon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/adjust.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/caret-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/columns.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 18 | 19 | $response->assertStatus(200); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/modx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/bread-slice.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/caret-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/location-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/map-marker.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Models/Product.php: -------------------------------------------------------------------------------- 1 | hasOne(proImage::class, 'id', 'proImage_id'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}, 5 | .fas, 6 | .far, 7 | .fal, 8 | .fad, 9 | .fab { 10 | -moz-osx-font-smoothing: grayscale; 11 | -webkit-font-smoothing: antialiased; 12 | display: inline-block; 13 | font-style: normal; 14 | font-variant: normal; 15 | text-rendering: auto; 16 | line-height: 1; 17 | } 18 | 19 | %fa-icon { 20 | @include fa-icon; 21 | } 22 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/npm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/regular/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/border-all.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/terms.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 | 6 |
7 | 8 |
9 |
10 | {!! $terms !!} 11 |
12 |
13 |
14 |
15 |
-------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/validation-errors.blade.php: -------------------------------------------------------------------------------- 1 | @if ($errors->any()) 2 |
merge(['class' => 'alert alert-danger text-sm p-2']) !!} role="alert"> 3 |
{{ __('Whoops! Something went wrong.') }}
4 | 5 |
    6 | @foreach ($errors->all() as $error) 7 |
  • {{ $error }}
  • 8 | @endforeach 9 |
10 |
11 | @endif 12 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/deviantart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/facebook-f.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/servicestack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/dot-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/minus-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/stop-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/tablet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/voicemail.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/dyalog.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/figma.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/instalod.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/paragraph.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/play-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/policy.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 | 6 |
7 | 8 |
9 |
10 | {!! $policy !!} 11 |
12 |
13 |
14 |
15 |
16 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/adn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/dochub.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/hacker-news.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/glass-whiskey.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/section-title.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |

5 | {{ $title }} 6 |

7 | 8 |

9 | {{ $description }} 10 |

11 |
12 | 13 |
14 | {{ $aside ?? '' }} 15 |
16 |
17 |
-------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/firstdraft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/angle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/angle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/dice-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/slash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/step-backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/step-forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/sticky-note.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/toggle-on.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | 'current_password', 16 | 'password', 17 | 'password_confirmation', 18 | ]; 19 | } 20 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/artstation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/regular/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/angle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/angle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/sort.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/html5.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/magento.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/twitch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/yahoo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/yandex.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/grip-lines.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/application-mark.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/Actions/Jetstream/DeleteUser.php: -------------------------------------------------------------------------------- 1 | deleteProfilePhoto(); 18 | $user->tokens->each->delete(); 19 | $user->delete(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/autoprefixer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/regular/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/bolt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/burn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/chalkboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/filter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/heart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/italic.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 19 | 20 | return $app; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/Http/Controllers/CompController.php: -------------------------------------------------------------------------------- 1 | 'Asif Abir', 13 | 'city' => 'Dhaka' 14 | ]; 15 | return view('mycomp', compact('myData')); 16 | } 17 | 18 | public function cform () 19 | { 20 | return view('myform'); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/grip-lines-vertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/lock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/minus-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/seedling.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/tv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/scss/mixins/_image.scss: -------------------------------------------------------------------------------- 1 | // Image Mixins 2 | // - Responsive image 3 | // - Retina image 4 | 5 | 6 | // Responsive image 7 | // 8 | // Keep images from scaling beyond the width of their parents. 9 | 10 | @mixin img-fluid { 11 | // Part 1: Set a maximum relative to the parent 12 | max-width: 100%; 13 | // Part 2: Override the height to auto, otherwise images will be stretched 14 | // when setting a width and height attribute on the img element. 15 | height: auto; 16 | } 17 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/jira.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/monero.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/ellipsis-v.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/meh-blank.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/paper-plane.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/buysellads.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/cloudsmith.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/maxcdn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/tiktok.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/battery-empty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/box.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/clock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/comment.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/ellipsis-h.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/qrcode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/record-vinyl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/suitcase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/stack-overflow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/regular/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/caret-square-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/neuter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/sign.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/utensil-spoon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/scss/bootstrap-utilities.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Utilities v5.0.1 (https://getbootstrap.com/) 3 | * Copyright 2011-2021 The Bootstrap Authors 4 | * Copyright 2011-2021 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | */ 7 | 8 | // Configuration 9 | @import "functions"; 10 | @import "variables"; 11 | @import "mixins"; 12 | @import "utilities"; 13 | 14 | // Helpers 15 | @import "helpers"; 16 | 17 | // Utilities 18 | @import "utilities/api"; 19 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/bitbucket.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/dropbox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/stack-exchange.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/regular/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/desktop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/equals.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/trash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/scss/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- 1 | @mixin box-shadow($shadow...) { 2 | @if $enable-shadows { 3 | $result: (); 4 | 5 | @each $value in $shadow { 6 | @if $value != null { 7 | $result: append($result, $value, "comma"); 8 | } 9 | @if $value == none and length($shadow) > 1 { 10 | @warn "The keyword 'none' must be used as a single argument."; 11 | } 12 | } 13 | 14 | @if (length($result) > 0) { 15 | box-shadow: $result; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/coffee.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/cross.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/long-arrow-alt-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/map.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/plug.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/plus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/video.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/css3-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/dashcube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/kaggle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/battery-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/battery-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/chart-area.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/clone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/folder-minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/heart-broken.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/icicles.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/long-arrow-alt-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/long-arrow-alt-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/long-arrow-alt-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/music.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/pen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/less/_bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | border-radius: .1em; 6 | border: solid .08em @fa-border-color; 7 | padding: .2em .25em .15em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix}, .fas, .far, .fal, .fab { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | // makes the font 33% larger relative to the icon container 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -.0667em; 9 | } 10 | 11 | .#{$fa-css-prefix}-xs { 12 | font-size: .75em; 13 | } 14 | 15 | .#{$fa-css-prefix}-sm { 16 | font-size: .875em; 17 | } 18 | 19 | @for $i from 1 through 10 { 20 | .#{$fa-css-prefix}-#{$i}x { 21 | font-size: $i * 1em; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/google.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/regular/window-restore.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/arrow-alt-circle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/battery-quarter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/chevron-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/hard-hat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/industry.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/tenge.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/user-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/elementor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/google-play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/korvue.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/telegram-plane.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/arrow-alt-circle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/arrow-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/arrow-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/arrow-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/battery-three-quarters.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/cloud.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/map-marker-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/user-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/wave-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/components/head/tinymce-config.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/scss/fontawesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import 'variables'; 6 | @import 'mixins'; 7 | @import 'core'; 8 | @import 'larger'; 9 | @import 'fixed-width'; 10 | @import 'list'; 11 | @import 'bordered-pulled'; 12 | @import 'animated'; 13 | @import 'rotated-flipped'; 14 | @import 'stacked'; 15 | @import 'icons'; 16 | @import 'screen-reader'; 17 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/cuttlefish.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/gg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/gratipay.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/openid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/product-hunt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/arrow-alt-circle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/arrow-alt-circle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/arrow-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/glass-martini-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/star.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/fulcrum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/sourcetree.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/laptop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/mountain.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/shield-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/discourse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/facebook-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/facebook.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/rockrms.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/unity.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/regular/stop-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/archive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/chevron-circle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/ethernet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/mitten.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/phone-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/hotjar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/regular/calendar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/regular/play-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/regular/sticky-note.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/briefcase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/brush.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/check.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/chevron-circle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/compact-disc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/dice-two.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/divide.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/exclamation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/fast-backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/fire.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/gem.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/hospital-symbol.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/meh.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/myform.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | @livewireStyles 9 | 10 | @livewireScripts 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | border: solid .08em $fa-border-color; 6 | border-radius: .1em; 7 | padding: .2em .25em .15em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix}, 14 | .fas, 15 | .far, 16 | .fal, 17 | .fab { 18 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 19 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 20 | } 21 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/deezer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/brands/gitlab.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/chevron-circle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/fontawesome/svgs/solid/chevron-circle-left.svg: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------