@extends('layouts.master') @section('title') @lang('translation.Category') @endsection @section('css') @endsection @section('content') @component('common-components.breadcrumb') @slot('pagetitle') Project @endslot @slot('title') Employee @endslot @endcomponent
@foreach($employees as $employee) @endforeach
ID Name designation JoiningDate Email Action
{{ $employee->id }} {{ $employee->name }} {{ $employee->designation }} {{ $employee->joining_date }} {{ $employee->official_email }}
@endsection @section('script') @endsection