@extends('layouts.template.main') @section('content')
Cài đặt tài khoản - Xem tất cả nhân viên
{{-- --}}
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif {{-- --}} {{-- --}} @foreach ($employees as $employee) {{-- --}} {{-- --}} @endforeach
IDTên nhân viên Tên marketing Email nhân viên tạo Chức danh Bộ phận Số điện thoại Ngày vào làmSalaryTrạng thái Vai trò Hành động
#{{ $employee->user->id }}{{ $employee->user->name }} {{ $employee->mkt_name }} {{ $employee->user->email }} {{ $employee->designation }} {{ $employee->department }} {{ $employee->phone }} {{ \Carbon\Carbon::parse($employee->joining_date)->format('Y-m-d') }}{{ number_format($employee->salary, 2) }}/- @if ($employee->status == 'active') Active @else Inactive @endif {{ $employee->user->roles->pluck('name')->implode(', ') }} {{-- -------------------------------- Delete with confirmation -------------------------------- --}}
@csrf @method('DELETE')
{{-- -------------------------------- Delete with confirmation -------------------------------- --}}
@endsection