@extends('layouts.master') @section('css') @section('title') {{ __('home.templates') }} @stop @endsection @section('content') @if(session()->has('success')) @endif @if(session()->has('error')) @endif @if ($errors->any())
@endif
{{ __('home.clothing_types_list') }}
@foreach($templates as $template) @endforeach
{{ __('home.template_name') }} {{ __('home.components') }} {{ __('home.notes') }} {{ __('home.actions') }}
{{ $template->template_name }}
    @foreach($template->items as $item)
  • {{ $item->product->product_name ?? __('home.unknown') }}
  • @endforeach
{{ $template->notes }} {{ __('home.edit') }} {{ __('home.delete') }}
@endsection