Files
backend-mm/resources/views/web/themes/shella/pages/entrepreneurs/home/index.blade.php
2025-09-25 03:03:31 +05:00

32 lines
989 B
PHP

@extends('web.themes.shella.layouts.app')
@section('content')
<main id="MainContent">
{{-- Hero carousel --}}
{{-- @include('web.themes.shella.components.carousel.hero-carousel') --}}
<div class="breadcrumbs mt-15">
<div class="container">
<ul class="list-unstyled d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
<li style="font-size: 1.6em;"><a href="/">{{ __('Home') }}</a></li>
<li style="font-size: 1.6em;"><span class="text-capitizalize">{{ __('Sellers') }}</span></li>
</ul>
</div>
</div>
<div class="container">
<h2 class="text-center mt-5">
{{ __('Sellers') }}
</h2>
</div>
{{-- Entrepreneru --}}
@include('web.themes.shella.pages.entrepreneurs.home.entrepreneur-box', [
'channels' => $channels
])
{{-- Info icons --}}
@include('web.themes.shella.pages.home.info-icons')
</main>
@stop