@extends('layouts.master') @section('css') @toastr_css @section('title') {{ trans('Students_trans.Students') }} @stop @endsection @section('page-header')

{{ trans('Students_trans.Students') }}

@endsection @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif تصدير @can('isAdmin')

@endcan
@can('isAdmin') @endcan @foreach ($users as $index => $user) @endforeach
# {{ trans('Users_trans.name') }} {{ trans('Users_trans.phone') }} {{ trans('Users_trans.email') }} {{ trans('Users_trans.dept') }} {{ trans('Certificat_trans.status') }} {{ trans('Certificat_trans.date') }}{{ trans('Users_trans.Processes') }}
{{ $user->id }} {{ $user->first_name }} {{ $user->phone }} {{ $user->email }} {{ $user->dept->name }} @if ($user->certificats == '1') {{ trans('Students_trans.submit') }} @else {{ trans('Students_trans.notsubmit') }} @endif {{ date('d-m-y', strtotime($user->created_at)) }} @can('عرض طالب') @endcan @can('تعديل طالب') @endcan @can('حذف طالب') @endcan
@endsection @section('js') @toastr_js @toastr_render @endsection