@extends('layouts.admin.master') @section('title') E-labclub | {{__('Show Student')}} @endsection @push('css') @endpush @section('content') @component('components.breadcrumb') @slot('breadcrumb_title')

{{__('Show Details About Student')}}

@endslot @endcomponent
@include('dashbord.include.image', [ 'model_id' => 'addImageModalImage1Model', 'type' => 'radio', 'name' => 'image_id', 'button_name' => 'Image', 'route' => 'managers.updateImage', 'hiddenInput' => ['employee_id' => $employee->id], ])
@include('dashbord.include.image', [ 'model_id' => 'addImageModalLogoModel', 'type' => 'radio', 'name' => 'logo_id', 'button_name' => 'Logo', 'route' => 'managers.updateImage', 'hiddenInput' => ['employee_id' => $employee->id], ])

  • {{__('Name')}}
    {{ $employee->name }}
    {{--

    banglore - 2021

    --}}
  • {{__('Email')}}
    {{ $employee->email }}
    {{--

    at london univercity - 2015

    --}}
  • {{__('Status')}}
    {{ $employee->status == 'active' ? 'Activated' : 'Not Activated' }}
    {{--

    single

    --}}
  • {{__('Mobile')}}
    {{ $employee->mobile }}
    {{--

    last 5 year

    --}}
  • {{--
  • --}} {{--
    --}} {{--
    --}} {{-- {{__('Gender')}}--}} {{--
    {{$employee->genders}}
    --}} {{-- --}}{{--

    O+ positive

    --}} {{--
    --}} {{--
  • --}} {{--
  • --}} {{--
    --}} {{--
    --}} {{-- {{__('Nationality')}}--}} {{--
    {{$employee->nathinalty->name ?? "Egyptian"}}
    --}} {{-- --}}{{--

    O+ positive

    --}} {{--
    --}} {{--
  • --}} {{--
  • --}} {{--
    --}} {{--
    --}} {{-- {{__('Age')}}--}} {{--
    {{$employee->age}}
    --}} {{-- --}}{{--

    O+ positive

    --}} {{--
    --}} {{--
  • --}}
{{-- --}}

{{__('Application Table')}}


{{--
Enter--}} {{-- --}} {{--
--}}
@foreach ($employee->applications()->get() as $application) @endforeach
{{__('Num')}} {{__('Status')}} {{__('University')}} {{__('Degree')}} {{__('College')}} {{__('Specialization')}} {{__('Date')}} {{__('Action')}}
{{$loop->index +1}} {{ $application->status }} {{ $application->university->name }} {{ $application->degree->name }} {{ $application->college->name }} {{ $application->academicSpecialization->name }} {{ $application->created_at ? $application->created_at->format('y:m:d') : null }}
@php $documents = $application->student->documents; @endphp @if($application->status == 'offer_letter' || $application->status == 'payment' || $application->status == 'official_acceptance_letter') @include('dashbord.include.uploadFile', ['button_name' => 'Document', 'model_id' => 'DocumentModel']) @elseif($application->status == 'registered') @include('dashbord.include.uploadFileOptional', ['button_name' => 'Document', 'model_id' => 'DocumentModel', 'type' => 'radio', 'name' => 'file_id']) @endif
@push('scripts') @include('dashbord.include.custom-datatable') @endpush @endsection