@extends('backend.layouts.master') @section('title', 'Attribute List') @section('styles') @endsection @section('scripts') @endsection @section('content')

AttributesCreate Attribute

Quick Create
{{ csrf_field() }}
{{ $errors->first('name') }}
{{ $errors->first('type_id') }}
{{ $errors->first('group_id') }}
{{ $errors->first('sort_order') }}
@foreach($categories->sortBy('sort_order') as $category)
{{ $category->name }} Attribute Table
@foreach($category->groups->sortBy('sort_order') as $group) @foreach($group->attributes->sortBy('sort_order') as $attribute) @endforeach @endforeach
ID Name Sort Order Type Last Updated Actions
{{ $group->name }}
{{ $attribute->id }} {{ $attribute->name }} {{ $attribute->sort_order }} {{ $attribute->type->name }} {{ $attribute->updated_at->diffForHumans() }}
{!! csrf_field() !!} {!! method_field('delete') !!}
@endforeach @endsection