@extends('layouts.admin') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Investors
@if(count($investors)) @foreach($investors as $investor) @endforeach @else @endif
Name Email Reference C. Rate T. Rate Status Manage
avatar
{{$investor->name}}
{{$investor->email}} {{$investor->reference}} {{$investor->commission_rate}} % {{$investor->tax_rate}} % @if($investor->is_active) @else @endif View @if($investor->is_active) Disable @else Enable @endif
{{$investors->links()}}
There are no investors here
@endsection @section('page-js') @if(count($investors)) @endif @endsection