@extends('layouts.app') @section("head") @endsection @section('content')

{{ __("Seller Dashboard") }}

@include('Company::frontend.layouts.sidebars.category-sidebar')
{{ __("Showing :from - :to of :total",["from"=>$rows->firstItem(),"to"=>$rows->lastItem(),"total"=>$rows->total()]) }}
@include('Company::frontend.layouts.search.company-sort')
@if($rows->count() > 0) @foreach($rows as $row) @include('Company::frontend.layouts.loop.company-item-1') @endforeach @else
{{__("Sorry, but nothing matched your search terms. Please try again with some different keywords.")}}
@endif
{{$rows->appends(request()->query())->links()}} @if($rows->total() > 0) {{ __("Showing :from - :to of :total",["from"=>$rows->firstItem(),"to"=>$rows->lastItem(),"total"=>$rows->total()]) }} @endif
@endsection