@extends('layouts.app')
@section('content')
| ID |
Name |
Email |
Affiliate |
Action |
@foreach ($managers as $manager)
| {{$manager->id}} |
{{$manager->name}} |
{{$manager->email}} |
{{$manager->affiliate}} |
Edit
Delete
|
@endforeach
@include('dashboard.affiliate.create')
@endsection