@extends('core::layouts.app') @section('title', __('Group Categories')) @section('content')

@lang('Group Categories')

@lang('Create Group category')
@include('core::partials.settings-sidebar')
@if($data->count() > 0)
@foreach($data as $item) @endforeach
@lang('Name') @lang('Date Created') @lang('Date Modified') @lang('Action')
{{ $item->name }}
{{$item->created_at->format('M j, Y')}}
{{$item->updated_at->format('M j, Y')}}
@csrf @method('DELETE')
@endif
{{ $data->appends( Request::all() )->links() }}
@if($data->count() == 0)
@lang('No group categories found')
@endif
@stop