@extends('layouts.admin') @section('content') @can('shop_create')
{{ trans('global.add') }} {{ trans('cruds.shop.title_singular') }}
@endcan
{{ trans('cruds.shop.title_singular') }} {{ trans('global.list') }}
@foreach($shops as $key => $shop) @endforeach
{{ trans('cruds.shop.fields.id') }} {{ trans('cruds.shop.fields.category') }} {{ trans('cruds.shop.fields.sub_category') }} {{ trans('cruds.shop.fields.brands') }} {{ trans('cruds.shop.fields.open_time') }} {{ trans('cruds.shop.fields.close_time') }} {{ trans('cruds.shop.fields.holidays') }} {{ trans('cruds.shop.fields.state') }} {{ trans('cruds.shop.fields.city') }} {{ trans('cruds.shop.fields.location') }} {{ trans('cruds.shop.fields.pincode') }} {{ trans('cruds.shop.fields.address') }} {{ trans('cruds.shop.fields.images') }} {{ trans('cruds.shop.fields.status') }}  
{{ $shop->id ?? '' }} {{ $shop->category->name ?? '' }} {{ $shop->sub_category->name ?? '' }} {{ $shop->brands->type ?? '' }} {{ $shop->open_time ?? '' }} {{ $shop->close_time ?? '' }} {{ App\Models\Shop::HOLIDAYS_SELECT[$shop->holidays] ?? '' }} {{ $shop->state ?? '' }} {{ $shop->city ?? '' }} {{ $shop->location ?? '' }} {{ $shop->pincode ?? '' }} {{ $shop->address ?? '' }} @foreach($shop->images as $key => $media) @endforeach {{ App\Models\Shop::STATUS_SELECT[$shop->status] ?? '' }} @can('shop_show') {{ trans('global.view') }} @endcan @can('shop_edit') {{ trans('global.edit') }} @endcan @can('shop_delete')
@endcan
@endsection @section('scripts') @parent @endsection