@extends('setting.nav') @section('title', 'All Employee') @section('content')

Employee Page

Welcome to the employee section.

@foreach ($employees as $emp) @endforeach
ID Email Total Mail Bad Good
{{ $emp->id }} {{ $emp->email }} {{ $emp->total_mail }} {{ $emp->is_spam }} {{ $emp->is_not_spam }}
@endsection @section('scripts') @endsection