├── 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 |
9 | {{ $description }} 10 |
11 |