@extends('templates.adminlte') @section('content-header')

Empleados

@endsection @section('content')
@foreach ($employees as $employee) @endforeach
Nombre Correo Teléfono Acciones
{{ $employee->name }} {{ $employee->email }} {{ $employee->phone }}
@csrf @method('DELETE')
@endsection