@extends('panel.layouts.master')
@section('content')
{{-- Show History Modal--}}
|
ردیف
|
کارشناس
|
نوع
|
تعداد
|
عملیات
|
@foreach($data as $key => $item)
@php
$i = 0;
@endphp
@foreach($item->groupBy('type') as $type => $history)
|
{{ ++$key }}
|
{{ $history[$i]->expert->fullName }}
|
{{ $type }}
|
{{ $history->count() }}
|
|
@endforeach
@php
$i++;
@endphp
@endforeach
@endsection
@section('script')
@endsection