@extends('main.main_back') @section('title') Liste des Employes @endsection @section('pagination') Employés @endsection @section('style-up') @endsection @section('content')
Ajouter

Liste des Employés

{{-- --}} @isset($data) @php //dd($data); @endphp @foreach($data as $key => $value) @php $value_id = $value->id; $gender = $value->em_gender; $name = $value->em_name; $phone = $value->em_phone; $address = $value->em_address; $birth = $value->em_birth; $birth_place = $value->em_place_birth; $salary = $value->em_salary; $doc = $value->em_doc; $num_doc = $value->em_num_doc; $status = $value->em_status; $agency = isset($value->agency) ? $value->agency->ag_name : ""; $admin = nameUser($value->ad_id); $post = isset($value->post) ? $value->post->po_name : "" ; $date_reg = $value->created_at; @endphp @endforeach @endisset
No
Nom complet AdresseNo siègeDate Naiss... Poste Salaire Agence Statut Admin Date Reg Actions
{{ $key+1 }}
{{ $name }}
{{ $phone }}
{{ $gender }}
{{ $address }} {{ $birth }} {{ $post }} {{ convert_amount($salary) }} {{ $agency }} @if ($status == 1) Actif @else Inactive @endif {{ $admin }} {{ $date_reg }}
{!! $data->links() !!}
@endsection @section("script-up") @endsection @section("script-down") @endsection