@if (session('message'))
×
{{ session('message') }}.
@endif
Buyer Name |
Perticulars |
Days |
Action |
@forelse ($marchent_sops as $key=> $marchent_sop)
@if ($key === 0 || $marchent_sop->buyer_name !== $marchent_sops[$key - 1]->buyer_name)
{{ $marchent_sop->buyer_name }} |
{{ $marchent_sop->Perticulars }} |
{{ $marchent_sop->day }} |
|
@else
|
{{ $marchent_sop->Perticulars }} |
{{ $marchent_sop->day }} |
|
@endif
@empty
No marchent_sops found |
@endforelse