@extends('layouts.app') @section('title') تقرير طباعة التذاكر لاكثر من مره @endsection @section('content')
@include('inc.breadcrumb', [ 'breadcrumb_items' => [ __('messages.Home') => route('home'), " تقرير طباعة التذاكر لاكثر من مره "=> 'active', ], ])
@php $i = 1; $skipCount = $data->perPage() * $data->currentPage() - $data->perPage(); @endphp @include('inc.is_empty_data', [ 'var_check_empty' => $data, 'var_check_empty_rows' => 6, ]) @foreach ($data as $item) @php $i++ @endphp @endforeach
# اخر طباعة تمت بواسطة عدد مرات الطباعه اسم عميل التذكره سبب اخر تكرار وقت اخر طباعة {{ __('messages.Actions') }}
{{ $skipCount + $i }}{{ $item->last_print_logs->user?->name }} {{ $item->count_print }} {{ $item?->booking?->user?->name }} {{ $item->last_print_logs->reason }} {{ $item->last_print_logs->created_at->format('Y-m-d H:i a') }} تفاصيل {{-- --}}
{{ $data->appends(Request::except(['_token']))->links() }}
@endsection