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