@extends('layouts.master')
@section('title', 'User')
@push('css')
@endpush
@section('content')
Employees Information
| Photo |
ID |
Name |
Designation |
Contact No |
Status |
Action |
@foreach ($employees as $employee)
| {{ $employee->photo }} |
{{ $employee->emp_id }} |
{{ $employee->name }} |
{{ $employee->designation }} |
{{ $employee->contact }} |
{{ $employee->activation_status }} |
|
@endforeach
@endsection
@push('js')
@endpush