@extends('layouts.master') @section('css') @toastr_css @section('title') {{ trans('Statment_trans.statment_information') }} @stop @endsection @section('page-header')
| {{ trans('Certificat_trans.First_name') }} | {{ $statment->first_name }} |
| {{ trans('Certificat_trans.Second_name') }} | {{ $statment->second_name }} |
| {{ trans('Certificat_trans.Third_name') }} | {{ $statment->midell_name }} |
| {{ trans('Certificat_trans.Last_name') }} | {{ $statment->last_name }} |
| {{ trans('Depts_trans.Name_Dept') }} | {{ $statment->dept->name }} |
| {{trans('Certificat_trans.notification_number')}} | {{ $statment->notification_number }} |
| {{ trans('Certificat_trans.date') }} | {{ date('d-m-y', strtotime($statment->created_at)) }} |
| {{ trans('Statment_trans.Pay_process') }} | @if ($statment->f_status == '0') {{ trans('Statment_trans.processing') }} @elseif ($statment->f_status == '1') {{ trans('Statment_trans.complate') }} @else {{ trans('Statment_trans.reject') }} @endif |
|---|---|
| {{ trans('Statment_trans.bank_note') }} | {{ $statment->f_note }} |
| {{ trans('Statment_trans.Result_process') }} | @if ($statment->r_status == '0') {{ trans('Statment_trans.processing') }} @elseif ($statment->r_status == '1') {{ trans('Statment_trans.complate') }} @else {{ trans('Statment_trans.reject') }} @endif |
| {{ trans('Statment_trans.Acadimac_note') }} | {{ $statment->r_note }} |
| {{ trans('Certificat_trans.comments') }} | {{ $statment->comments }} |
|
|