@extends('seller.layout.index') @section('title') پورسانت های من @endsection @section('style') @endsection @section('script') @endsection @section('content')
@foreach ($orders as $key => $order) @endforeach
# شماره سفارش نام کاربر وضعیت تراکنش تاریخ مجموع فروش پورسانت (درصد) پورسانت (مبلغ)
@if($orders->has('firstItem')) {{ $orders->firstItem() + $key }} @else # @endif {{ $setting->productCode.'-'.$order->order_number }} {{ $order->user->first_name == null ? $order->user->cellphone : $order->user->first_name.' '.$order->user->last_name }} {{ $order->payment_status }} {{ verta($order->created_at)->format('%d %B ,Y') }} {{ number_format($order->orderItems()->sum('product_price')).' تومان ' }} {{ $order->commission }} {{ number_format($order->orderItems()->sum('product_price')*$order->commission/100) }}
{{ $orders->render() }}

Loading...
@include('admin.orders.modal') @include('admin.orders.filter_order_modal') @endsection