@extends('layouts.app') @section('title') تقرير طباعة التذاكر لاكثر من مره @endsection @section('content')
@include('inc.breadcrumb', [ 'breadcrumb_items' => [ __('messages.Home') => route('home'), " تقرير طباعة التذاكر لاكثر من مره "=> route('admin.ticket_print_logs.index'), "تفاصيل"=> 'active', ], ])
بيانات التذكرة

اسم صاحب التذكرة : {{ $item->booking?->user?->name }}

العرض : {{ $item->booking?->show?->name }}

اجمالى مرات الطباعة : {{ $item->count_print }}

تاريخ العرض : {{ $item?->booking?->show_date?->date }}

سجلات الطباعة
@foreach ($item->print_logs as $log)
{{ $log->created_at->format('Y-m-d h:i A') }}

الطباعة رقم : {{ $log->print_count }}

الذى قام بالطباعة هو : {{ $log->user->name }}

السبب : {{ $log->reason }}

@endforeach
@endsection