@extends('backend/layouts/default') {{-- Web site Title --}} @section('title') Group Management :: @parent @stop {{-- Content --}} @section('content') @if (count($groups) > Setting::getSettings()->per_page) {{ $groups->links() }} @endif
@if ($groups->count() >= 1) @foreach ($groups as $group) @endforeach @else @endif
@lang('admin/groups/table.id') @lang('admin/groups/table.name') @lang('admin/groups/table.users') @lang('admin/groups/table.created_at') @lang('table.actions')
{{ $group->id }} {{ $group->name }} {{ $group->users()->count() }} {{ $group->created_at->diffForHumans() }} @lang('button.edit') @lang('button.delete')
No results
@if (count($groups) > Setting::getSettings()->per_page) {{ $groups->links() }} @endif @stop