shop_listing.blade.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. @extends('frontend.layouts.app')
  2. @section('content')
  3. <section class="pt-4 mb-4">
  4. <div class="container">
  5. <div class="row">
  6. <div class="col-lg-6 text-center text-lg-left">
  7. <h1 class="fw-600 h4">{{ translate('All Sellers') }}</h1>
  8. </div>
  9. <div class="col-lg-6">
  10. <ul class="breadcrumb bg-transparent p-0 justify-content-center justify-content-lg-end">
  11. <li class="breadcrumb-item opacity-50">
  12. <a class="text-reset" href="{{ route('home') }}">{{ translate('Home')}}</a>
  13. </li>
  14. <li class="text-dark fw-600 breadcrumb-item">
  15. <a class="text-reset" href="{{ route('sellers') }}">"{{ translate('All Sellers') }}"</a>
  16. </li>
  17. </ul>
  18. </div>
  19. </div>
  20. </div>
  21. </section>
  22. <section class="mb-2">
  23. <div class="container">
  24. <div class="row gutters-10 row-cols-xxl-3 row-cols-xl-3 row-cols-lg-2 row-cols-md-2 row-cols-1">
  25. @foreach ($shops as $key => $shop)
  26. @if($shop->user !=null)
  27. <div class="col">
  28. <div class="row no-gutters bg-white align-items-center border border-light rounded hov-shadow-md mb-3 has-transition">
  29. <div class="col-4">
  30. <a href="{{ route('shop.visit', $shop->slug) }}" class="d-block p-3" tabindex="0">
  31. <img
  32. src="{{ static_asset('assets/img/placeholder-rect.jpg') }}"
  33. data-src="{{ uploaded_asset($shop->logo) }}"
  34. alt="{{ $shop->name }}"
  35. class="img-fluid lazyload"
  36. onerror="this.onerror=null;this.src='{{ static_asset('assets/img/placeholder-rect.jpg') }}';"
  37. >
  38. </a>
  39. </div>
  40. <div class="col-8 border-left border-light">
  41. <div class="p-3 text-left">
  42. <h2 class="h6 fw-600 text-truncate">
  43. <a href="{{ route('shop.visit', $shop->slug) }}" class="text-reset" tabindex="0">{{ $shop->name }}</a>
  44. </h2>
  45. <div class="rating rating-sm mb-2">
  46. {{ renderStarRating($shop->rating) }}
  47. </div>
  48. <a href="{{ route('shop.visit', $shop->slug) }}" class="btn btn-soft-primary btn-sm" tabindex="0">
  49. {{ translate('Visit Store') }}
  50. <i class="las la-angle-right"></i>
  51. </a>
  52. </div>
  53. </div>
  54. </div>
  55. </div>
  56. @endif
  57. @endforeach
  58. </div>
  59. <div class="aiz-pagination aiz-pagination-center mt-4">
  60. {{ $shops->links() }}
  61. </div>
  62. </div>
  63. </section>
  64. @endsection