@extends('seller.layout.index') {{-- =========== meta Title =================== --}} @section('title') سبد خرید @endsection {{-- =========== My Css Style =================== --}} @section('style') @endsection {{-- =========== My JavaScript =================== --}} @section('script') @endsection {{-- =========== CONTENT =================== --}} @section('content')
@php $i=1; @endphp @foreach($carts as $key=>$cart) @php $user=\App\Models\User::where('id',$key)->first(); @endphp @php $i++; @endphp @endforeach
# نام کاربر عملیات
{{ $i }} {{ isset($user) ? $user->first_name.' '.$user->last_name : 'کاربر وجود ندارد' }} تکمیل خرید
{{-- {{ $wallet_history->render() }}--}}
@endsection