@extends('layouts.admin') @section('content')
{{ trans('global.show') }} {{ trans('cruds.shop.title') }}
{{ trans('cruds.shop.fields.id') }} {{ $shop->id }}
{{ trans('cruds.shop.fields.category') }} {{ $shop->category->name ?? '' }}
{{ trans('cruds.shop.fields.sub_category') }} {{ $shop->sub_category->name ?? '' }}
{{ trans('cruds.shop.fields.brands') }} {{ $shop->brands->type ?? '' }}
{{ trans('cruds.shop.fields.open_time') }} {{ $shop->open_time }}
{{ trans('cruds.shop.fields.close_time') }} {{ $shop->close_time }}
{{ trans('cruds.shop.fields.holidays') }} {{ App\Models\Shop::HOLIDAYS_SELECT[$shop->holidays] ?? '' }}
{{ trans('cruds.shop.fields.state') }} {{ $shop->state }}
{{ trans('cruds.shop.fields.city') }} {{ $shop->city }}
{{ trans('cruds.shop.fields.location') }} {{ $shop->location }}
{{ trans('cruds.shop.fields.pincode') }} {{ $shop->pincode }}
{{ trans('cruds.shop.fields.address') }} {{ $shop->address }}
{{ trans('cruds.shop.fields.aboutus') }} {!! $shop->aboutus !!}
{{ trans('cruds.shop.fields.images') }} @foreach($shop->images as $key => $media) @endforeach
{{ trans('cruds.shop.fields.status') }} {{ App\Models\Shop::STATUS_SELECT[$shop->status] ?? '' }}
@endsection