@extends('layouts.admin.app') @section('title',\App\Utils\translate('Employee_Add')) @push('css_or_js') @endpush @section('content')

{{ \App\Utils\translate('Add_New_Employee') }}

@csrf
{{ \App\Utils\translate('General_Information') }}
( {{\App\Utils\translate('ratio_1:1')}} )( {{\App\Utils\translate('optional')}} )
{{\App\Utils\translate('image')}}
{{\App\Utils\translate('account_info')}}
{{\App\Utils\translate('employee_table')}} {{$employees->total()}}
@foreach($employees as $key=>$employee) @endforeach
{{ \App\Utils\translate('sl') }} {{\App\Utils\translate('Employee Name')}} {{\App\Utils\translate('phone')}} {{\App\Utils\translate('email')}} {{\App\Utils\translate('action')}}
{{$key+$employees->firstItem()}} {{$employee['f_name']}} {{$employee['l_name']}} {{$employee['phone']}} {{$employee['email']}} @if (auth('admin')->id() != $employee['id'])
@csrf @method('delete')
@endif
@if(count($employees) === 0)
Image Description

{{ \App\Utils\translate('No_data_to_show') }}

@endif
@endsection @push('script_2') @endpush