@extends('layouts.admin') @section('content')
{{ trans('global.show') }} {{ trans('cruds.storeFront.title') }}
{{ trans('cruds.storeFront.fields.id') }} {{ $storeFront->id }}
{{ trans('cruds.storeFront.fields.name') }} {{ $storeFront->name }}
{{ trans('cruds.storeFront.fields.store') }} {{ $storeFront->store->name ?? '' }}
{{ trans('global.relatedData') }}
@includeIf('admin.storeFronts.relationships.storefrontsProducts', ['products' => $storeFront->storefrontsProducts])
@endsection