Sindbad~EG File Manager
@extends('seller.layouts.app')
@section('panel_content')
@if(get_setting('vendor_commission_activation') == 1)
<div class="aiz-titlebar text-left mt-2 mb-3">
<div class="alert alert-info my-2 text-center">
@if(get_setting('seller_commission_type') == 'fixed_rate')
<p class="font-weight-bold my-1"> {{ translate('You are Under Fixed Commission. Commission Rate') }} : {{ get_setting('vendor_commission') }} %</p>
@elseif(get_setting('seller_commission_type') == 'seller_based')
<p class="font-weight-bold my-1"> {{ translate('You are Under Seller Based Commission. Commission Rate') }} : {{ \App\Models\Shop::where('user_id', auth()->user()->id)->first()->commission_percentage }} %</p>
@elseif(get_setting('seller_commission_type') == 'category_based')
<p class="font-weight-bold my-1">{{ translate('You are under Category Wise commission. See the commission details ') }} <a class="text-info ml-1" href="{{ route('seller.categories-wise-commission') }}">{{ translate('Here') }}</a></p>
@endif
</div>
</div>
@endif
<div class="card">
<form class="" action="" id="sort_commission_history" method="GET">
<div class="card-header row gutters-5">
<div class="col">
<h5 class="mb-md-0 h6">{{ translate('Commission History') }}</h5>
</div>
<div class="col-lg-2">
<div class="form-group mb-0">
<input type="text" class="form-control form-control-sm aiz-date-range" id="search" name="date_range"@isset($date_range) value="{{ $date_range }}" @endisset placeholder="{{ translate('Daterange') }}" autocomplete="off">
</div>
</div>
<div class="col-auto">
<div class="form-group mb-0">
<button type="submit" class="btn btn-primary">{{ translate('Filter') }}</button>
</div>
</div>
</div>
</form>
<div class="card-body">
<table class="table aiz-table mb-0">
<thead>
<tr>
<th>#</th>
<th data-breakpoints="lg">{{ translate('Order Code') }}</th>
<th>{{ translate('Admin Commission') }}</th>
<th>{{ translate('Earning') }}</th>
<th data-breakpoints="lg">{{ translate('Created At') }}</th>
</tr>
</thead>
<tbody>
@foreach ($commission_history as $key => $history)
<tr>
<td>{{ ($key+1) }}</td>
<td>
@if(isset($history->order))
{{ $history->order->code }}
@if (addon_is_activated('pos_system') && $history->order->order_from == 'pos')
<span class="badge badge-inline badge-warning ml-2">{{ translate('POS') }}</span>
@endif
@else
<span class="badge badge-inline badge-danger">
{{ translate('Order Deleted') }}
</span>
@endif
</td>
<td>{{ $history->admin_commission }}</td>
<td>{{ $history->seller_earning }}</td>
<td>{{ $history->created_at }}</td>
</tr>
@endforeach
</tbody>
</table>
<div class="aiz-pagination mt-4">
{{ $commission_history->links() }}
</div>
</div>
</div>
@endsection
@section('script')
<script type="text/javascript">
function sort_commission_history(el){
$('#sort_commission_history').submit();
}
</script>
@endsection
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists