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

{{ trans('Statment_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 ($statments as $index => $statment) @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 }} {{ $statment->first_name }} {{ $statment->second_name }} {{ $statment->midell_name }} {{ $statment->last_name }} {{ $statment->notification_number }} @if ($statment->f_status == '0') {{ trans('Statment_trans.processing') }} @elseif ($statment->f_status == '1') {{ trans('Statment_trans.complate') }} @else {{ trans('Statment_trans.reject') }} @endif @if ($statment->r_status == '0') {{ trans('Statment_trans.processing') }} @elseif ($statment->r_status == '1') {{ trans('Statment_trans.complate') }} @else {{ trans('Statment_trans.reject') }} @endif {{ date('d-m-y', strtotime($statment->created_at)) }}
@endsection @section('js') @toastr_js @toastr_render @endsection