@extends('apex-layouts.main')
@section('content')
Affiliates
Total Affiliates
: {{ $affiliates->total() }}
id |
name |
code |
source |
phone |
email |
address |
company |
created |
actions |
@foreach($affiliates as $value)
{{$value->id}} |
{{$value->name}} |
{{$value->code}} |
{{$value->source}} |
{{$value->phone}} |
{{$value->email}} |
{{$value->address}} |
{{$value->company}} |
{{\App\helpers\ViewCommonHelper::getDateFormat($value->created_at)}}
|
|
@endforeach
@if($affiliates->total() > $affiliates->perPage())
@endif
@endsection
@section('scripts')
@stop
@section('styles')
@stop