@extends('layouts.app') @section('content')
Aplicaciones
{!! $sections->render() !!} @foreach($sections as $section)

{{ $section->name }}:{{ strtoupper($section->getNamePage()) }} {{ __('new shop') }}

@if($section->sectionContent->count() > 0) @foreach($section->sectionContent as $content) @if(!empty($content->sectionContract) && !$content->sectionContract->trashed()) @endif @endforeach
{{ __('image') }} {{ __('sku') }} Nombre Detalle
{{ ucfirst($content->sectionContract->sku) }} {{ $content->sectionContract->name }} {{ $content->sectionContract->detail }}
Editar Eliminar
active ? ' checked' : '' }}>
@else

No hay tiendas

@endif
@endforeach {!! $sections->render() !!}
@endsection