@extends('layouts.front-end.app') @section('title',\App\CPU\translate('All Seller Page')) @push('css_or_js') @endpush @section('content')

{{ \App\CPU\translate('All_Sellers') }}

@csrf
@foreach($sellers as $shop)
@php($current_date = date('Y-m-d')) @php($start_date = date('Y-m-d', strtotime($shop['vacation_start_date']))) @php($end_date = date('Y-m-d', strtotime($shop['vacation_end_date']))) @if($shop->vacation_status && ($current_date >= $start_date) && ($current_date <= $end_date)) {{\App\CPU\translate('closed_now')}} @elseif($shop->temporary_close) {{\App\CPU\translate('closed_now')}} @endif image")}}" alt="{{$shop->name}}">
{{Str::limit($shop->name, 14)}}
@endforeach
{{ $sellers->links() }}
@endsection @push('script') @endpush