@extends('layouts.admin') {{ $training->{'name_'.$lang} }} @section('content')
@if (session()->has('success'))
{{ session()->pull('success') }}
@endif
{{ trans('home.students') }}

{{ trans('home.table_contain_all_data_shortly_you_can_view_more_details') }}

@foreach ($students as $student) @endforeach
{{ trans('home.id') }} {{ trans('home.ssn') }} {{ trans('home.name') }} {{ trans('home.email') }} {{ trans('home.phone') }} {{ trans('home.image') }} {{ trans('home.status') }}
{{ $student->user->id }} {{ $student->user->student_info->ssn }} {{ $student->user->f_name.' '.$student->user->l_name }} {{ $student->user->email}} {{ $student->user->student_info->mobile}} @if($student->user->image) user->image)}} width="100"> @endif {{ $student->user->status==1? __('home.active') : __('home.inactive') }}
@endsection