@extends('layouts.main') @section('title', $data['title']) @section('content')
@if ($data['userType'] != 0) {{--
--}} @if ($data['userType'] != 0 && canCreate('Group')) @endif {{--
--}} @endif
@foreach ($data['itemGroups'] as $items) @php $nameParts = explode(' ', $items->name); $initials = ''; foreach ($nameParts as $part) { $initials .= strtoupper(substr($part, 0, 1)); if (strlen($initials) >= 3) { break; } } @endphp

{{ $items->code }}

{{ $items->created_at->format('d-m-Y') }}

{{ $items->created_by_name }}

@endforeach
@endsection('content') @section('custom-scripts') {{-- --}} {{-- --}} {{-- --}} @endsection