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

Attribute GroupsCreate Group

Quick Create
{{ csrf_field() }}
{{ $errors->first('name') }}
{{ $errors->first('category_id') }}
{{ $errors->first('sort_order') }}
Group Table
@foreach($groups as $group) @endforeach
ID Name Category Sort Order Created Actions
{{ $group->id }} {{ $group->name }} {{ $group->category->name }} {{ $group->sort_order }} {{ $group->created_at->diffForHumans() }}
{!! csrf_field() !!} {!! method_field('delete') !!}
@endsection