@extends('layout.admin_layout')
@section('title', 'Global Commission')
@section('body')
@section('header', 'Global Commission')
@section('badge')
Global Commission Percentage
@endsection
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
| No |
Commission |
Start |
End |
@foreach($data as $key=>$value)
|
{{$key+1}}
|
{{$value->percentage}} |
{{$value->created_at}}
|
@if($value->updated_at=='')
@else
{{$value->updated_at}}
@endif
|
@endforeach
@endsection