@extends('layouts.master') @section('css') @toastr_css @section('title') {{ trans('Report_trans.title_page') }} - {{ trans('Record_trans.record') }} @stop @endsection @section('page-header')

{{ trans('Record_trans.title_page') }} / {{ trans('Certificat_trans.reports') }}

@endsection @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@can('المالية') @endcan @can('النتيجة') @endcan @foreach ($records as $index => $record) @can('المالية') @endcan @can('النتيجة') @endcan @endforeach
# {{ trans('Certificat_trans.name') }} {{trans('Certificat_trans.notification_number')}}{{ trans('Statment_trans.Pay_process') }}{{ trans('Statment_trans.Result_process') }}{{ trans('Certificat_trans.date') }}
{{ $index + 1 }} {{ $record->first_name }} {{ $record->second_name }} {{ $record->midell_name }} {{ $record->last_name }} {{ $record->notification_number }} @if ($record->f_status == '0') {{ trans('Statment_trans.processing') }} @elseif ($record->f_status == '1') {{ trans('Statment_trans.complate') }} @else {{ trans('Statment_trans.reject') }} @endif @if ($record->r_status == '0') {{ trans('Statment_trans.processing') }} @elseif ($record->r_status == '1') {{ trans('Statment_trans.complate') }} @else {{ trans('Statment_trans.reject') }} @endif {{ date('d-m-y', strtotime($record->created_at)) }}
@endsection @section('js') @toastr_js @toastr_render @endsection