@extends('layout.app')
@section('title','Reports')
@section('report','active')
@section('user_report','active')
@section('css')
@endsection
@section('content')
{{__('messages.menu.user report')}}
@if($reports)
| # |
{{__('messages.reports.service')}} |
{{__('messages.reports.token number')}} |
{{__('messages.reports.counter')}} |
@foreach($reports as $key=> $report)
| {{ $key+1}} |
{{$report->service_name}} |
{{$report->token_letter}}-{{$report->token_number}} |
{{$report->counter_name}} |
@endforeach
@endif
@endsection
@section('js')
@endsection