Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/job-board.corals.io/resources/themes/marketplace-master/templates/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/job-board.corals.io/resources/themes/marketplace-master/templates/stores.blade.php
@extends('layouts.public')


@section('editable_content')
    <!-- Page Content-->
    <div class="container padding-bottom-3x mb-1 mt-5">
        <div class="row">

            <!-- Products-->
            <div class="col-xl-9 col-lg-8 order-lg-2">
                <div class="text-center">
                    @php \Actions::do_action('pre_display_shop') @endphp
                    {!! \Shortcode::compile( 'zone','shop-header' ) !!}
                </div>
                <!-- Shop Toolbar-->
                <div class="shop-toolbar padding-bottom-1x mb-2">
                    <div class="column">
                        <div class="shop-sorting">
                            <label for="sorting">@lang('corals-marketplace-master::labels.template.store.sort')</label>

                            <select class="form-control" id="shop_sort">
                                <option disabled="disabled"
                                        selected>@lang('corals-marketplace-master::labels.template.store.select_option')</option>
                                @foreach($sortOptions as $value => $text)
                                    <option value="{{ $value }}" {{ request()->get('sort') == $value?'selected':'' }}>
                                        {{ $text }}
                                    </option>
                                @endforeach
                            </select>

                            <span class="text-muted">@lang('corals-marketplace-master::labels.template.store.show')
                                &nbsp;</span>
                            <span>{{trans('corals-marketplace-master::labels.template.store.page',['current'=>$stores->currentPage(),'total' => $stores->lastPage()])}}</span>
                        </div>
                    </div>
                    <div class="column">
                        <div class="shop-view">
                            <a class="list-view {{ $layout=='list'?'active':'' }}"
                               href="{{ request()->fullUrlWithQuery(['layout'=>'list']) }}">
                                <span></span><span></span><span></span>
                            </a>
                            <a class="grid-view {{ $layout=='grid'?'active':'' }}"
                               href="{{ request()->fullUrlWithQuery(['layout'=>'grid']) }}">
                                <span></span><span></span><span></span>
                            </a>

                        </div>
                    </div>
                </div>
                @isset($storeText)
                    <div class="row mb-3">
                        <div class="col-md-12">
                            {{ $storeText }}
                        </div>
                    </div>
                @endisset


                <div id="shop-items">
                    <div class="{{ $layout == 'grid'?'isotope-grid':'' }} cols-3 mb-2">
                        <div class="gutter-sizer"></div>
                        <div class="grid-sizer"></div>
                        <!-- Product-->
                        @forelse($stores as $store)
                            @include('partials.store_'.$layout.'_item',compact('store'))
                        @empty
                            <h4>@lang('corals-marketplace-master::labels.template.store.sorry_no_result')</h4>
                        @endforelse
                    </div>

                    <!-- Pagination-->
                    {{ $stores->appends(request()->except('page'))->links('partials.paginator') }}
                </div>
            </div>
            <!-- Sidebar          -->
            <div class="col-xl-3 col-lg-4 order-lg-1">
                <button class="sidebar-toggle position-left" data-toggle="modal" data-target="#modalShopFilters"><i
                            class="icon-layout"></i></button>
                <aside class="sidebar sidebar-offcanvas">
                    @include('partials.store_filter')
                </aside>
            </div>
            <div class="row">
                <div class="col-md-12 text-center">
                    {!!   \Shortcode::compile( 'zone','store-footer' ) ; !!}

                </div>

            </div>

        </div>
    </div>
@stop

@section('js')
    @parent
    {!! Theme::js('js/category_sidebar.js') !!}
    <script type="text/javascript">
        $(document).ready(function () {
            $("#shop_sort").change(function () {
                $("#filterSort").val($(this).val());

                $("#filterForm").submit();
            })
        });
    </script>
@endsection

Spamworldpro Mini