@extends('admin.layout.master') @section('custom_style') {{-- --}} @endsection @section('home')
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@endif
Notification
@if(!empty($all_emp)) {{-- --}} @foreach ($all_emp as $key=>$emp) @endforeach
# Emp Name Emp Code Designation Dept. All
{{$key+1}} {{$emp->emp_name}} {{$emp->emp_code}} @if(!empty($emp->fetch_designation->name)){{$emp->fetch_designation->name}}@endif @if(!empty($emp->fetch_department->name)){{$emp->fetch_department->name}}@endif
@endif
@endsection @section('script') {{-- --}} @endsection