@extends('layouts.admin') @push('styles') @endpush @push('script') @endpush @section('content')
Operațiune | Total | Detalii |
---|---|---|
{{ $operation['operation_id'] }} | {{ $operation['operation_total'] }} |
{{ $operation['operation_name'] ?? 'N/A' }}
@if(isset($operation['tickets']) && count($operation['tickets']) > 0)
@foreach($ticketStatuses as $status => $status_text)
@php
$count = $operation['tickets'][$status] ?? 0;
@endphp
!$count, 'font-weight-bold' => $count])>
{{ $status_text }}
→
{{ $count }}
@endforeach
@else
Nu există date disponibile
@endif
|