@extends('admin.layout') @section('content') @php $vendor_id = App\Models\Listing\Listing::where('id', $id)->pluck('vendor_id')->first(); if ($vendor_id != 0) { $dowgraded = App\Http\Helpers\VendorPermissionHelper::packagesDowngraded($vendor_id); $listingCanAdd = packageTotalListing($vendor_id) - vendorTotalListing($vendor_id); } @endphp
{{ __('Business Hours') }}
{{ __('Back') }} @php $dContent = App\Models\Listing\ListingContent::where('listing_id', $id) ->where('language_id', $defaultLang->id) ->first(); $slug = !empty($dContent) ? $dContent->slug : ''; @endphp @if ($dContent) {{ __('Preview') }} @endif @if ($vendor_id != 0) @endif
@csrf @foreach ($days as $day) @endforeach
{{ __('Day') }} {{ __('Start Time') }} {{ __('End Time') }} {{ __('Holiday') }}
{{ $day->day }} @if ($day->holiday == 0) -- @else

@endif
@if ($day->holiday == 0) -- @else

@endif
@includeIf('admin.listing.check-limit') @endsection @section('script') @endsection