@extends('layouts.admin.master') @section('title') E-labclub | {{__('Show Student')}} @endsection @push('css') @endpush @section('content') @component('components.breadcrumb') @slot('breadcrumb_title')
banglore - 2021
--}}at london univercity - 2015
--}}single
--}}last 5 year
--}}O+ positive
--}} {{--O+ positive
--}} {{--O+ positive
--}} {{--| {{__('Num')}} | {{__('Status')}} | {{__('Name')}} | {{__('Email')}} | {{__('Mobile')}} | {{__('Image')}} | {{__('Birth Date')}} | {{__('Action')}} |
|---|---|---|---|---|---|---|---|
| {{$loop->index +1}} | {{ $employee->status == 'active' ? 'Activated' : 'Not Activated' }} | {{ $employee->name }} | {{ $employee->email }} | {{ $employee->mobile }} |
|
{{ $employee->birth ? $employee->birth->format('y:m:d') : now()->format('y:m:d') }} |
@can('employee-edit')
{{ __('Edit') }}
@endcan
@can('employee-show')
{{ __('Show') }}
@endcan
@can('employee-delete')
{{ __('Delete') }}
@endcan
|