@extends('layouts.frontend') @section('content')
@can('store_front_create') @endcan
{{ trans('cruds.storeFront.title_singular') }} {{ trans('global.list') }}
@foreach($storeFronts as $key => $storeFront) @endforeach
{{ trans('cruds.storeFront.fields.id') }} {{ trans('cruds.storeFront.fields.name') }} {{ trans('cruds.storeFront.fields.store') }}  
{{ $storeFront->id ?? '' }} {{ $storeFront->name ?? '' }} {{ $storeFront->store->name ?? '' }} @can('store_front_show') {{ trans('global.view') }} @endcan @can('store_front_edit') {{ trans('global.edit') }} @endcan @can('store_front_delete')
@endcan
@endsection @section('scripts') @parent @endsection