????vendor-views/withdraw/index.blade.php000064400000006741150075320660013727 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('withdraw_Request')) @push('css_or_js') @endpush @section('content')

{{translate('withdraw')}}

{{ translate('withdraw_request_table')}} {{ $withdrawRequests->total() }}
@include('vendor-views.withdraw._table')
@endsection @push('script') @endpush vendor-views/withdraw/_table.blade.php000064400000005233150075320660014041 0ustar00
@if($withdrawRequests->count() > 0) @foreach($withdrawRequests as $key=>$withdrawRequest) @endforeach @endif
{{translate('SL')}} {{translate('amount')}} {{translate('request_time')}} {{translate('status')}} {{translate('action')}}
{{$withdrawRequests->firstitem()+$key}} {{currencyConverter($withdrawRequest['amount'])}} {{date("F jS, Y", strtotime($withdrawRequest->created_at))}} @if($withdrawRequest->approved==0) @elseif($withdrawRequest->approved==1) @else @endif @if($withdrawRequest->approved==0) @else {{translate('close')}} @endif
@if(count($withdrawRequests)==0) @include('layouts.back-end._empty-state',['text'=>'no_withdraw_request_found'],['image'=>'default']) @endif
{{$withdrawRequests->links()}}
vendor-views/profile/index.blade.php000064400000010043150075320660013524 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('bank_Info_View')) @section('content')

{{translate('my_bank_info')}}

{{translate('account_details')}}

{{translate('holder_name').':'}} {{$vendor->holder_name ?? translate('no_data_found')}}
{{translate('edit')}}
  • {{translate('bank_Name')}} : {{$vendor->bank_name ?? translate('no_data_found')}}
  • {{translate('branch_Name')}} : {{$vendor->branch ?? translate('no_data_found')}}
  • {{translate('account_Number')}} : {{$vendor->account_no ?? translate('no_data_found')}}
@endsection vendor-views/profile/bank-info-update-view.blade.php000064400000007176150075320660016526 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('bank_Info')) @section('content')

{{translate('edit_Bank_info')}}

{{translate('edit_bank_info')}}

@csrf
{{translate('cancel')}}
@endsection @push('script') @endpush vendor-views/profile/update-view.blade.php000064400000042510150075320660014653 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('profile_Settings')) @push('css_or_js') @endpush @section('content')

{{ translate('Profile_Information') }}

@csrf
@php($banner = dynamicAsset(path: 'public/assets/back-end/img/media/admin-profile-bg.png'))
{{ translate('image') }}

{{translate('basic_Information')}}

{{translate('change_Password')}}

@method('PATCH') @csrf
@endsection @push('script') @endpush vendor-views/report/all-product.blade.php000064400000033346150075320660014531 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('product_Report')) @push('css_or_js') @endpush @section('content')

{{translate('product_report')}}

@include('vendor-views.report.product-report-inline-menu')

{{translate('filter_Data')}}

{{ $product_count['reject_product_count']+$product_count['active_product_count']+$product_count['pending_product_count'] }}

{{translate('total_Product')}}
{{ $product_count['reject_product_count'] }}
{{translate('rejected')}}
{{ $product_count['pending_product_count'] }}
{{translate('pending')}}
{{ $product_count['active_product_count'] }}
{{translate('active')}}

{{ $total_product_sale }}

{{translate('total_Product_Sale')}}

{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $total_discount_given), currencyCode: getCurrencyCode()) }}

{{translate('total_Discount_Given')}} {{translate('image')}}
@include('layouts.back-end._apexcharts',['title'=>'product_Statistics','statisticsValue'=>$chart_data['total_product'],'label'=>array_keys($chart_data['total_product']),'statisticsTitle'=>'total_product','getCurrency'=>false])

{{translate('total_Product')}} {{ $products->total() }}

@foreach($products as $key=>$product) @endforeach
{{translate('SL')}} {{translate('product_Name')}} {{translate('product_Unit_Price')}} {{translate('total_Amount_Sold')}} {{translate('total_Quantity_Sold')}} {{translate('average_Product_Value')}} {{translate('current_Stock_Amount')}} {{translate('average_Ratings')}}
{{ $products->firstItem()+$key }} {{ \Illuminate\Support\Str::limit($product->name, 20) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product->unit_price), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: isset($product->orderDetails[0]->total_sold_amount) ? $product->orderDetails[0]->total_sold_amount : 0), currencyCode: getCurrencyCode()) }} {{ isset($product->orderDetails[0]->product_quantity) ? $product->orderDetails[0]->product_quantity : 0 }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: ( isset($product->orderDetails[0]->total_sold_amount) ? $product->orderDetails[0]->total_sold_amount : 0) / (isset($product->orderDetails[0]->product_quantity) ? $product->orderDetails[0]->product_quantity : 1) ), currencyCode: getCurrencyCode()) }} {{ $product->product_type == 'digital' ? ($product->status==1 ? translate('available') : translate('not_available')) : $product->current_stock }}
{{count($product->rating)>0?number_format($product->rating[0]->average, 2, '.', ' '):0}}
( {{$product->reviews->count()}} )
{!! $products->links() !!}
@if(count($products)==0) @include('layouts.back-end._empty-state',['text'=>'no_product_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush vendor-views/report/order-report.blade.php000064400000052624150075320660014727 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('order_Report')) @section('content')

{{translate('order_Report')}}

{{translate('filter_Data')}}

{{translate('image')}}

{{ $order_count['total_order'] }}

{{translate('total_Orders')}}
{{ $order_count['canceled_order'] }}
{{translate('canceled')}} {{translate('image')}}
{{ $order_count['ongoing_order'] }}
{{translate('ongoing')}} {{translate('image')}}
{{ $order_count['delivered_order'] }}
{{translate('completed')}} {{translate('image')}}
{{translate('image')}}

{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $due_amount+$settled_amount), currencyCode: getCurrencyCode()) }}

{{translate('total_Order_Amount')}}
{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $due_amount), currencyCode: getCurrencyCode()) }}
{{translate('due_Amount')}} {{translate('image')}}
{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $settled_amount), currencyCode: getCurrencyCode()) }}
{{translate('already_Settled')}} {{translate('image')}}
@foreach(array_values($chart_data['order_amount']) as $amount) @php($chart_val[] = usdToDefaultCurrency(amount: $amount)) @endforeach @foreach($chart_data['order_amount'] as $amount) @php($chartVal[] = usdToDefaultCurrency(amount: $amount)) @endforeach
@include('layouts.back-end._apexcharts',['title'=>'order_Statistics','statisticsValue'=>$chartVal,'label'=>array_keys($chart_data['order_amount']),'statisticsTitle'=>'total_settled_amount'])
{{translate('payment_Statistics')}}

{{ getCurrencySymbol(currencyCode: getCurrencyCode()) }}{{getFormatCurrency(amount: usdToDefaultCurrency(amount: $payment_data['total_payment'])) }}

{{translate('completed')}}
{{translate('payments')}}
{{translate('cash_Payments')}} ({{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['cash_payment']), currencyCode: getCurrencyCode()) }})
{{translate('digital_Payments')}} ({{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['digital_payment']), currencyCode: getCurrencyCode()) }})       
{{translate('wallet')}} ({{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['wallet_payment']), currencyCode: getCurrencyCode()) }})
{{translate('offline_payments')}} ({{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['offline_payment']), currencyCode: getCurrencyCode()) }})

{{translate('total_Orders')}} {{ $orders->total() }}

@foreach($orders as $key=>$order) @endforeach
{{translate('SL')}} {{translate('order_ID')}} {{translate('total_Amount')}} {{translate('product_Discount')}} {{translate('coupon_Discount')}} {{translate('shipping_Charge')}} {{translate('VAT/TAX')}} {{translate('commission')}} {{translate('deliveryman_incentive')}} {{translate('status')}}
{{ $orders->firstItem()+$key }} {{$order->id}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order->order_amount), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order->details_sum_discount), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order->discount_amount), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order->shipping_cost - ($order->extra_discount_type == 'free_shipping_over_order_amount' ? $order->extra_discount : 0)), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order->details_sum_tax), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order->admin_commission), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order->deliveryman_charge), currencyCode: getCurrencyCode()) }}
@if($order['order_status']=='pending') {{translate($order['order_status'])}} @elseif($order['order_status']=='processing' || $order['order_status']=='out_for_delivery') {{str_replace('_',' ',($order['order_status'] == 'processing') ? translate('packaging'):translate($order['order_status']))}} @elseif($order['order_status']=='confirmed') {{translate($order['order_status'])}} @elseif($order['order_status']=='failed') {{translate('failed_to_deliver')}} @elseif($order['order_status']=='delivered') {{translate($order['order_status'])}} @else {{translate($order['order_status'])}} @endif
@if(count($orders)==0) <@include('layouts.back-end._empty-state',['text'=>'no_order_found'],['image'=>'default']) @endif
{!! $orders->links() !!}
@endsection @push('script_2') @endpush vendor-views/report/product-stock.blade.php000064400000020466150075320660015103 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('product_Report')) @push('css_or_js') @endpush @section('content')

{{translate('product_report')}}

@include('vendor-views.report.product-report-inline-menu')

{{translate('filter_Data')}}

{{translate('total_Products')}} {{ $products->total() }}

@foreach($products as $key=>$data) @endforeach
{{translate('SL')}} {{translate('product_Name')}} {{translate('last_Updated_Stock')}} {{translate('current_Stock')}} {{translate('status')}}
{{$products->firstItem()+$key}} {{ date('d M Y', $data['updated_at'] ? strtotime($data['updated_at']) : null) }} {{$data['current_stock']}}
@if($data['current_stock'] >= $stock_limit) {{translate('In-Stock')}} @elseif($data['current_stock'] == 0) {{translate('out_of_Stock')}} @elseif($data['current_stock'] < $stock_limit) {{translate('soon_Stock_Out')}} @endif
{!! $products->links() !!}
@if(count($products)==0) @include('layouts.back-end._empty-state',['text'=>'no_product_found'],['image'=>'default']) @endif
@endsection vendor-views/report/product-report-inline-menu.blade.php000064400000000670150075320660017504 0ustar00
vendor-views/auth/forgot-password/index.blade.php000064400000016121150075320660016170 0ustar00 {{translate('forgot_password')}}
@php($ecommerceLogo=getWebConfig('company_web_logo')) {{translate('logo')}}

{{translate('forgot_password').'?'}}

{{translate('follow_steps')}}

  1. 1.{{translate('fill_in_your_email_address_below').'.'}}
  2. 2.{{translate('we_will_send_email you a temporary code').'.'}}
  3. 3.{{translate('use_the_code_to_change_your_password_on_our_secure_website').'.'}}
@php($verificationBy = getWebConfig('forgot_password_verification')) @if ($verificationBy=='email')
@csrf
{{translate('please_provide_valid_email_address.')}}
@else
@csrf
@endif
{!! Toastr::message() !!} @if ($errors->any()) @endif vendor-views/auth/forgot-password/reset-password-view.blade.php000064400000016300150075320660021012 0ustar00 {{translate('vendor')}} | {{translate('reset_Password')}}
@php($ecommerceLogo=getWebConfig('company_web_logo')) {{translate('logo')}}

{{translate('forget_your_password').'?'}}

{{translate('follow_steps_secure').'.'}}

  1. 1.{{translate('new_password').'.'}}
  2. 2.{{translate('confirm_password').'.'}}
@csrf
{!! Toastr::message() !!} @if ($errors->any()) @endif vendor-views/auth/forgot-password/verify-otp-view.blade.php000064400000010635150075320660020141 0ustar00 {{translate('forgot_password')}}
@php($ecommerceLogo=getWebConfig('company_web_logo')) {{translate('logo')}}

{{translate('provide_your_otp_and_proceed').'?'}}

@csrf
{!! Toastr::message() !!} @if ($errors->any()) @endif vendor-views/auth/login.blade.php000064400000026361150075320660013040 0ustar00@php use App\Enums\DemoConstant; @endphp {{translate('vendor_Login')}}
@php($companyWebLogo=getWebConfig(name: 'company_web_logo')) {{translate('logo')}}
@csrf

{{translate('sign_in')}}

{{translate('welcome_back_to_vendor_login')}}

@if(isset($recaptcha) && $recaptcha['status'] == 1)

@else @endif
@if(env('APP_MODE')=='demo') @endif
{{translate('warning')}}
{{translate('your_account_has_been_suspended').', '.translate('please_contact_with')}} {{translate('help_and_support')}}
{{translate('warning')}}
{{translate('your_account_is_not_approved_yet').', '.translate('please_wait_or_contact_with')}} {{translate('help_and_support')}}
{!! Toastr::message() !!} @if(isset($recaptcha) && $recaptcha['status'] == 1) @endif vendor-views/dashboard/index.blade.php000064400000020333150075320660014016 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('dashboard')) @push('css_or_js') @endpush @section('content')

{{translate('order_analytics')}}

@include('vendor-views.partials._dashboard-order-status',['orderStatus'=>$dashboardData['orderStatus']])

{{translate('vendor_Wallet')}}

@include('vendor-views.partials._dashboard-wallet-status',['dashboardData'=>$dashboardData])
@php( $shippingMethod = getWebConfig('shipping_method'))
@include('vendor-views.dashboard.partials.earning-statistics')
@include('vendor-views.partials._top-rated-products',['topRatedProducts'=>$dashboardData['topRatedProducts']])
@include('vendor-views.partials._top-selling-products',['topSell'=>$dashboardData['topSell']])
@if($shippingMethod=='sellerwise_shipping')
@include('vendor-views.partials._top-rated-delivery-man',['topRatedDeliveryMan'=>$dashboardData['topRatedDeliveryMan']])
@endif
@endsection @push('script_2') @endpush vendor-views/dashboard/partials/earning-statistics.blade.php000064400000004615150075320660020346 0ustar00

{{translate('earning_statistics')}}

vendor-views/pos/index.blade.php000064400000027272150075320660012701 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('POS')) @push('css_or_js') @endpush @section('content')
{{ translate('product_Section') }}
@foreach($products as $product) @include('vendor-views.pos.partials._single-product', ['product'=>$product]) @endforeach
{!!$products->withQueryString()->links()!!}
{{ translate('billing_Section') }}
@include('vendor-views.pos.partials._cart-summary')
@if($order) @include('vendor-views.pos.partials.modals._print-invoice') @endif @include('vendor-views.pos.partials.modals._add-customer') @include('vendor-views.pos.partials.modals._hold-orders-modal') @include('vendor-views.pos.partials.modals._add-coupon-discount') @include('vendor-views.pos.partials.modals._add-discount') @include('vendor-views.pos.partials.modals._short-cut-keys') @endsection @push('script_2') @endpush vendor-views/pos/partials/_single-product.blade.php000064400000002275150075320660016503 0ustar00
{{ $product['name'] }}
{{ $product['name'] }}
{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product['unit_price'] - getProductDiscount(product: $product, price: $product['unit_price'])), currencyCode: getCurrencyCode()) }}
{{ $product['product_type'] == 'physical' ? ($product['current_stock'] >0 ? $product['current_stock'].' '.$product['unit'].($product['current_stock']>1?'s':'') : translate('out_of_stock').'.') : translate('click_for_details').'.' }}
vendor-views/pos/partials/_cart-summary.blade.php000064400000005123150075320660016163 0ustar00@php($currentCustomerData = $summaryData['currentCustomerData'] ?? null) @php($cartNames = $summaryData['cartNames'] ?? []) @if ($summaryData['currentCustomer'] != 'Walking Customer')

{{ translate('customer_Information') }}

{{ translate('name') }} : {{ $currentCustomerData?->f_name.' '.$currentCustomerData?->l_name }}
{{ translate('contact') }} : {{ $currentCustomerData?->phone }}
@endif
{{ translate('clear_Cart')}} {{ translate('new_Order')}}
@include('vendor-views.pos.partials._cart') vendor-views/pos/partials/modals/_hold-orders-modal.blade.php000064400000001626150075320660020336 0ustar00 vendor-views/pos/partials/modals/_add-coupon-discount.blade.php000064400000002210150075320660020667 0ustar00 vendor-views/pos/partials/modals/_print-invoice.blade.php000064400000002570150075320660017607 0ustar00@php(session(['last_order'=> false])) vendor-views/pos/partials/modals/_add-discount.blade.php000064400000003427150075320660017401 0ustar00 vendor-views/pos/partials/modals/_short-cut-keys.blade.php000064400000003277150075320660017727 0ustar00 vendor-views/pos/partials/modals/_add-customer.blade.php000064400000014613150075320660017411 0ustar00 vendor-views/pos/partials/_view-hold-orders.blade.php000064400000014322150075320660016732 0ustar00@if ($totalHoldOrders > 0)
@if (session()->has('cart_name') && count(session()->get('cart_name')) > 0 ) @php($totalHoldOrdersCount=1) @foreach ($cartItems as $key => $singleCart) @if($singleCart['customerOnHold']) @endif @endforeach @endif
{{translate('SL')}} {{translate('date')}} {{translate('customer_info')}} {{translate('quantity')}} {{translate('total_amount')}} {{translate('action')}}
{{ $totalHoldOrdersCount }} @if (isset(session()->get($key)['add_to_cart_time']))
{{ session()->get($key)['add_to_cart_time']->format('d/m/Y') ?? 'N/a' }}
{{ session()->get($key)['add_to_cart_time']->format('h:m A') ?? '' }}
@else
{{ translate('now') }}
@endif
{{ $singleCart['customerName'] }}
{{ $singleCart['customerPhone'] ?? '' }}
{{ $singleCart['countItem'] }} {{ translate('items') }}
@if (session()->has($key) && count(session()->get($key)) > 0)
@foreach($singleCart['cartItemValue'] as $item) @if(is_array($item))
{{ Str::limit($item['name'], 12 )}}
@if($item['variant'])
{{ translate('variation') }} : {{ $item['variant'] }}
@endif
{{ translate('qty') }} : {{ $item['quantity'] }}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item['productSubtotal']), currencyCode: getCurrencyCode())}}
@endif @endforeach
@endif
@if ($singleCart['discountOnProduct']>0) {{setCurrencySymbol(amount:usdToDefaultCurrency(amount: round($singleCart['subtotal']+$singleCart['discountOnProduct']+$singleCart['totalTax'], 2)), currencyCode: getCurrencyCode())}} @endif {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: round($singleCart['total']+$singleCart['totalTax'], 2)), currencyCode: getCurrencyCode())}}
@else

{{ translate('No_Order_Found') }}

@endif vendor-views/pos/partials/_cart.blade.php000064400000023223150075320660014471 0ustar00
@csrf
@foreach($cartItems['cartItemValue'] as $key => $item) @if(is_array($item)) @endif @endforeach
{{ translate('item') }} {{ translate('qty') }} {{ translate('price') }} {{ translate('delete') }}
{{$item['name'].translate('image')}}
{{Str::limit($item['name'], 12)}} @if($item['tax_model'] == 'include') img @endif
{{Str::limit($item['variant'], 20)}}
{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount:$item['productSubtotal']), currencyCode: getCurrencyCode()) }}
{{ translate('sub_total') }} :
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$cartItems['subtotal']+$cartItems['discountOnProduct']), currencyCode: getCurrencyCode())}}
{{ translate('product_Discount') }} :
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($cartItems['discountOnProduct'],2)), currencyCode: getCurrencyCode()) }}
{{ translate('extra_Discount') }} :
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$cartItems['extraDiscount']), currencyCode: getCurrencyCode())}}
{{ translate('coupon_Discount') }} :
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$cartItems['couponDiscount']), currencyCode: getCurrencyCode())}}
{{ translate('tax') }} :
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($cartItems['totalTax'],2)), currencyCode: getCurrencyCode())}}
{{ translate('total') }} :
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($cartItems['total']+$cartItems['totalTax']-$cartItems['couponDiscount'], 2)), currencyCode: getCurrencyCode())}}
{{ translate('paid_By') }}:
  • @php( $walletStatus = getWebConfig('wallet_status') ?? 0) @if ($walletStatus)
  • @endif
@if($cartItems['countItem']) {{ translate('cancel_Order') }} @else {{ translate('cancel_Order') }} @endif
@push('script_2') @endpush vendor-views/pos/partials/_search-product.blade.php000064400000003271150075320660016464 0ustar00@if (count($products) > 0) @else
{{ translate('No_Product_Found') }}
@endif vendor-views/pos/partials/_quick-view.blade.php000064400000031553150075320660015631 0ustar00 vendor-views/pos/order/order-details.blade.php000064400000061444150075320660015442 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('order_Details')) @section('content')

{{ translate('order_Details') }}

{{ translate('order_ID') }} #{{$order['id']}}

{{date('d M Y H:i:s',strtotime($order['created_at'])) }}
{{ translate('status') }}: @if($order['order_status']=='pending') {{ translate(str_replace('_',' ',$order['order_status'])) }} @elseif($order['order_status']=='failed') {{ translate(str_replace('_',' ',$order['order_status'])) }} @elseif($order['order_status']=='processing' || $order['order_status']=='out_for_delivery') {{ translate(str_replace('_',' ',$order['order_status'])) }} @elseif($order['order_status']=='delivered' || $order['order_status']=='confirmed') {{ translate(str_replace('_',' ',$order['order_status'])) }} @else {{ translate(str_replace('_',' ',$order['order_status'])) }} @endif
{{ translate('payment_Method') }} : {{ translate(str_replace('_',' ',$order['payment_method'])) }}
@if(isset($order['transaction_ref']) && $order->payment_method != 'cash_on_delivery' && $order->payment_method != 'pay_by_wallet' && !isset($order->offline_payments))
{{ translate('reference_Code') }} : {{ translate(str_replace('_',' ',$order['transaction_ref'])) }} {{ $order->payment_method == 'offline_payment' ? '('.$order->payment_by.')':'' }}
@endif
{{ translate('payment_Status') }}: @if($order['payment_status']=='paid') {{ translate('paid') }} @else {{ translate('unpaid') }} @endif
@if(getWebConfig('order_verification') && $order->order_type == "default_type") {{ translate('order_verification_code') }} : {{$order['verification_code']}} @endif
@php($itemPrice=0) @php($subtotal=0) @php($total=0) @php($shipping=0) @php($discount=0) @php($tax=0) @php($extraDiscount=0) @php($productPrice=0) @php($totalProductPrice=0) @php($couponDiscount=0) @foreach($order->details as $key=>$detail) product) { $productDetails = $detail->product; }else { $productDetails = json_decode($detail->product_details, true); } ?> @if($productDetails) @php($itemPrice+=$detail['price']*$detail['qty']) @php($subtotal=$detail['price']*$detail['qty']+$detail['tax']-$detail['discount']) @php($productPrice = $detail['price']*$detail['qty']) @php($totalProductPrice+=$productPrice) @if($productDetails['product_type'] == 'digital') @endif @php($discount+=$detail['discount']) @php($tax+=$detail['tax']) @php($total+=$subtotal) @endif @php($sellerId=$detail->seller_id) @endforeach
{{ translate('SL') }} {{ translate('item_details') }} {{ translate('item_price') }} {{ translate('tax') }} {{ translate('item_discount') }} {{ translate('total_price') }}
{{++$key}}
{{translate('image_description')}}
{{substr($productDetails['name'], 0, 30) }}{{strlen($productDetails['name'])>10?'...':''}}
{{ translate('qty') }} : {{$detail['qty']}}
{{ translate('unit_price') }} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail->price+( $detail->tax_model =='include' ? $detail->tax : 0)), currencyCode: getCurrencyCode())}} @if ($detail->tax_model =='include') ({{translate('tax_incl.')}}) @else ({{translate('tax').":".($productDetails->tax)}}{{$productDetails->tax_type ==="percent" ? '%' :''}}) @endif
@if ($detail->variant)
{{ translate('variation') }} : {{$detail['variant']}}
@endif
@if(isset($productDetails['digital_product_type']) && $productDetails['digital_product_type'] == 'ready_after_sell') @endif
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail['price']*$detail['qty']), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail['tax']), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail['discount']), currencyCode: getCurrencyCode()) }}{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $subtotal), currencyCode: getCurrencyCode()) }}
@php($shipping=$order['shipping_cost'])
{{ translate('item_price') }}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $itemPrice), currencyCode: getCurrencyCode()) }}
{{ translate('item_discount') }}
- {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $discount), currencyCode: getCurrencyCode()) }}
{{ translate('extra_discount') }}
- {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $extraDiscount), currencyCode: getCurrencyCode()) }}
{{ translate('sub_total') }}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $itemPrice-$discount-$extraDiscount), currencyCode: getCurrencyCode()) }}
{{ translate('coupon_discount') }}
- {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $couponDiscount), currencyCode: getCurrencyCode()) }}
{{ translate('vat') }}/{{ translate('tax') }}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $tax), currencyCode: getCurrencyCode()) }}
{{ translate('total') }}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $total+$shipping-$extraDiscount-$couponDiscount), currencyCode: getCurrencyCode()) }}
@if($order->customer)

{{ translate('customer_information') }}

{{translate('image')}}
{{$order->customer['f_name'].' '.$order->customer['l_name']}} {{$order->customer['phone']}} {{$order->customer['email']}}
@else
{{ translate('no_customer_found') }}
@endif
@endsection vendor-views/pos/order/invoice.blade.php000064400000014327150075320660014336 0ustar00

{{ getWebConfig('company_name') }}

{{ translate('phone') }} : {{ getWebConfig('company_phone') }}
{{ translate('order_ID') }} : {{ $order['id'] }}
{{ date('d/M/Y h:i a', strtotime($order['created_at'])) }}
@if($order->customer)
{{ translate('customer_name') }} : {{$order->customer['f_name'].' '.$order->customer['l_name']}}
@if ($order->customer->id !=0)
{{ translate('phone') }} : {{$order->customer['phone']}}
@endif
@endif
@php($sub_total=0) @php($total_tax=0) @php($total_dis_on_pro=0) @php($product_price=0) @php($total_product_price=0) @php($ext_discount=0) @php($coupon_discount=0) @foreach($order->details as $detail) @if($detail->product) @php($sub_total+=$amount) @php($total_product_price+=$product_price) @php($total_tax+=$detail['tax']) @endif @endforeach
{{ translate('qty') }} {{ translate('desc') }} {{ translate('price') }}
{{$detail['qty']}} {{ Str::limit($detail->product['name'], 200) }}
@if($detail->product->product_type == 'physical' && count(json_decode($detail['variation'],true))>0) {{ translate('variation') }} : @foreach(json_decode($detail['variation'],true) as $key1 =>$variation)
{{ translate($key1) }} : {{$variation}}
@endforeach @endif {{ translate('discount') }} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($detail['discount'],2)), currencyCode: getCurrencyCode()) }}
@php($amount=($detail['price']*$detail['qty'])-$detail['discount']) @php($product_price = $detail['price']*$detail['qty']) {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($amount,2)), currencyCode: getCurrencyCode()) }}
{{ translate('items_Price') }}: {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($sub_total,2)), currencyCode: getCurrencyCode()) }}
{{ translate('tax') }} / {{ translate('VAT') }}: {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($total_tax,2)), currencyCode: getCurrencyCode()) }}
{{ translate('subtotal') }}: {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($sub_total+$total_tax,2)), currencyCode: getCurrencyCode()) }}
{{ translate('extra_discount') }}: {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($ext_discount,2)), currencyCode: getCurrencyCode()) }}
{{ translate('coupon_discount') }}: {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($coupon_discount,2)), currencyCode: getCurrencyCode()) }}
{{ translate('total') }}: {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($order->order_amount,2)), currencyCode: getCurrencyCode()) }}
{{ translate('paid_by') }}: {{ translate($order->payment_method) }}
"""{{ translate('thank_you') }}"""
vendor-views/chatting/index.blade.php000064400000043454150075320660013701 0ustar00@extends('layouts.back-end.app-seller') @section('title',translate('chatting_Page')) @section('content')

{{ translate('chatting_List') }}

@if(isset($allChattingUsers) && count($allChattingUsers) > 0) @foreach($allChattingUsers as $key => $chatting) @if($chatting->user_id && $chatting->customer)
{{ $chatting->customer->f_name .' '. $chatting->customer->l_name }} {{ $chatting->created_at->diffForHumans() }}
{{ $chatting->customer->phone }}
@if(!$chatting->seen_by_seller && !($key == 0))
@endif
@elseif($chatting->delivery_man_id && $chatting->deliveryMan)
{{ $chatting->deliveryMan->f_name.' '.$chatting->deliveryMan->l_name }} {{ $chatting->created_at->diffForHumans() }}
{{ $chatting->deliveryMan->phone }}
@if(!$chatting->seen_by_seller && !($key == 0))
@endif
@endif @endforeach @endif
@if(isset($lastChatUser))
Image Description
{{ $lastChatUser['f_name'].' '.$lastChatUser['l_name'] }}
{{ $lastChatUser['country_code'] }} {{ $lastChatUser['phone'] }}
@include('vendor-views.chatting.messages', ['lastChatUser'=>$lastChatUser, 'chattingMessages'=>$chattingMessages])
@csrf
@if(theme_root_path() == "default") @endif
@else

{{ translate('you_haven’t_any_conversation_yet') }}

@endif
@endsection @push('script') @endpush vendor-views/chatting/view.blade.php000064400000000000150075320660013520 0ustar00vendor-views/chatting/messages.blade.php000064400000022077150075320660014377 0ustar00 @foreach($chattingMessages as $key => $message) @php($genTimeGap = $message->created_at) @if ($message->sent_by_customer || $message->sent_by_delivery_man)
Image Description
@if (json_decode($message['attachment']))
@foreach (json_decode($message['attachment']) as $index => $photo) @if($index < 3 || count(json_decode($message['attachment'], true)) < 5) @elseif($index == 3) @else @endif @endforeach
@endif @if($message->message)

{{$message->message}}

@endif
@else
@if (json_decode($message['attachment']))
@foreach (json_decode($message['attachment']) as $secondIndex => $photo) @if($secondIndex < 3 || count(json_decode($message['attachment'], true)) < 5) @elseif($secondIndex == 3) @else @endif @endforeach
@endif @if(!empty($message->message))

{{$message->message}}

@endif
@endif @endForeach vendor-views/chatting/list.blade.php000064400000000000150075320660013521 0ustar00vendor-views/shop/index.blade.php000064400000021635150075320660013046 0ustar00 @extends('layouts.back-end.app-seller') @section('title', translate('shop_view')) @section('content')

{{translate('shop_info')}}

@include('vendor-views.shop.inline-menu')
@csrf
{{translate('temporary_close')}}

{{'*'.translate('by_turning_on_temporary_close_mode_your_shop_will_be_shown_as_temporary_off_in_the_website_and_app_for_the_customers._they_cannot_purchase_or_place_order_from_your_shop')}}

{{translate('my_shop_info')}}

{{translate('edit')}}
@if($shop->image=='def.png')
@else
@endif

{{translate('name').' '.':'}}

{{$shop->name}}

{{translate('phone').' '.':'}}
{{$shop->contact}}
{{translate('address').' '.':'}}
{{$shop->address}}
@endsection vendor-views/shop/update-view.blade.php000064400000024564150075320660014175 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('shop_Edit')) @push('css_or_js') @endpush @section('content')

{{translate('edit_shop_info')}}

{{translate('edit_shop_info')}}
{{ translate('back') }}
@csrf
{{translate('image')}}
{{ THEME_RATIO[theme_root_path()]['Store cover Image'] }}
{{translate('banner_image')}}
@if(theme_root_path() == "theme_aster")
{{translate('ratio').' '.'( 6:1 )'}}
{{translate('banner_image')}}
@endif @if(theme_root_path() == "theme_fashion")
{{translate('ratio').' '.'( 7:1 )'}}
{{translate('banner_image')}}
@endif
{{translate('cancel')}}
@endsection @push('script') @endpush vendor-views/shop/inline-menu.blade.php000064400000001253150075320660014151 0ustar00
vendor-views/shop/order-settings-view.blade.php000064400000021123150075320660015650 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('shop_view')) @section('content')

{{translate('shop_info')}}

@include('vendor-views.shop.inline-menu')
@if ($minimumOrderAmountStatus && $minimumOrderAmountByVendor)
@csrf
{{translate('minimum_order_amount')}}
@endif @if ($freeDeliveryStatus && $freeDeliveryResponsibility == 'seller')
@csrf
{{translate('free_delivery_over_amount')}}
{{translate('free_Delivery')}}
@endif
@endsection vendor-views/partials/notification-modal.blade.php000064400000002717150075320660016365 0ustar00 vendor-views/partials/_top-rated-delivery-man.blade.php000064400000004071150075320660017230 0ustar00

{{translate('top_Delivery_Man')}}

@if($topRatedDeliveryMan)
@foreach($topRatedDeliveryMan as $key=> $deliveryMan) @if(isset($deliveryMan['id']))
{{Str::limit($deliveryMan['f_name'].' '.$deliveryMan['l_name'], 25)}}
{{translate('order_delivered')}} :
{{$deliveryMan['delivered_orders_count']}}
@endif @endforeach
@else

{{translate('no_data_found').'!'}}

@endif
vendor-views/partials/_top-rated-products.blade.php000064400000004545150075320660016505 0ustar00

{{translate('most_popular_products')}}

@if($topRatedProducts)
@foreach($topRatedProducts as $key=>$product)
{{$product->name}} image
{{isset($product)?substr($product->name,0,30) . (strlen($product->name)>20?'...':''):'not exists'}}
{{round($product['ratings_average'],2)}} ({{$product['reviews_count']}} {{ translate('reviews')}})
@endforeach
@else

{{translate('no_Top_Selling_Products')}}

@endif
vendor-views/partials/_dashboard-order-status.blade.php000064400000007346150075320660017330 0ustar00
{{translate('pending')}}
{{$orderStatus['pending']}}
{{translate('confirmed')}}
{{$orderStatus['confirmed']}}
{{translate('packaging')}}
{{$orderStatus['processing']}}
{{translate('out_For_Delivery')}}
{{$orderStatus['out_for_delivery']}}
{{translate('delivered')}}
{{$orderStatus['delivered']}}
{{translate('canceled')}}
{{$orderStatus['canceled']}}
{{translate('returned')}}
{{$orderStatus['returned']}}
{{translate('failed_To_Delivery')}}
{{$orderStatus['failed']}}
vendor-views/partials/_search-product.blade.php000064400000003261150075320660015662 0ustar00@if (count($products) > 0) @else
{{ translate('No_Product_Found') }}
@endif vendor-views/partials/_dashboard-wallet-status.blade.php000064400000014116150075320660017476 0ustar00

{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $dashboardData['totalEarning']), currencyCode: getCurrencyCode(type: 'default'))}}

{{translate('withdrawable_balance')}}
{{translate('withdraw')}}

{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $dashboardData['pendingWithdraw']), currencyCode: getCurrencyCode(type: 'default'))}}

{{translate('pending_Withdraw')}}

{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $dashboardData['adminCommission']), currencyCode: getCurrencyCode(type: 'default'))}}

{{translate('total_Commission_given')}}

{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $dashboardData['withdrawn']), currencyCode: getCurrencyCode(type: 'default'))}}

{{translate('already_Withdrawn')}}

{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $dashboardData['deliveryManChargeEarned']), currencyCode: getCurrencyCode(type: 'default'))}}

{{translate('total_delivery_charge_earned')}}

{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $dashboardData['collectedTotalTax']), currencyCode: getCurrencyCode(type: 'default'))}}

{{translate('total_tax_given')}}

{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $dashboardData['collectedCash']), currencyCode: getCurrencyCode(type: 'default'))}}

{{translate('collected_cash')}}
vendor-views/partials/_top-selling-products.blade.php000064400000003451150075320660017036 0ustar00

{{translate('top_selling_products')}}

@if($topSell)
@foreach($topSell as $key=>$product)
{{$product->name}} image {{substr($product['name'],0,40)}} {{strlen($product['name'])>20?'...':''}}
{{translate('sold')}} :
{{$product['order_details_count']}}
@endforeach
@else

{{translate('no_Top_Selling_Products')}}

@endif
vendor-views/product/bulk-import.blade.php000064400000007156150075320660014715 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('product_Bulk_Import')) @section('content')

{{translate('bulk_Import')}}

{{translate('instructions')}} :

{{ translate('1') }}. {{translate('download_the_format_file_and_fill_it_with_proper_data.')}}

{{ translate('2') }}. {{translate('you_can_download_the_example_file_to_understand_how_the_data_must_be_filled.')}}

{{ translate('3') }}. {{translate('once_you_have_downloaded_and_filled_the_format_file')}}, {{translate('upload_it_in_the_form_below_and_submit.')}}

4. {{translate('after_uploading_products_you_need_to_edit_them_and_set_product_images_and_choices.')}}

5. {{translate('you_can_get_brand_and_category_id_from_their_list_please_input_the_right_ids.')}}

6. {{translate('you_can_upload_your_product_images_in_product_folder_from_gallery_and_copy_image_path.')}}

@csrf

{{translate("do_not_have_the_template")}} ?

{{translate('download_Format')}}
@endsection vendor-views/product/partials/_sku_combinations.blade.php000064400000006617150075320660017776 0ustar00@if(count($combinations[0]) > 0) @php $serial = 1; @endphp @foreach ($combinations as $key => $combination) @php $sku = ''; foreach (explode(' ', $productName) as $value) { $sku .= substr($value, 0, 1); } $str = ''; foreach ($combination as $index => $item){ if($index > 0 ){ $str .= '-'.str_replace(' ', '', $item); $sku .='-'.str_replace(' ', '', $item); } else{ if($colorsActive == 1){ $color_name = \App\Models\Color::where('code', $item)->first()->name; $str .= $color_name; $sku .='-'.$color_name; } else{ $str .= str_replace(' ', '', $item); $sku .='-'.str_replace(' ', '', $item); } } } @endphp @if(strlen($str) > 0) @endif @endforeach
{{ $serial++ }}
@endif vendor-views/product/partials/_update_stock.blade.php000064400000001632150075320660017104 0ustar00

{{ translate('product_price_&_stock') }}

@include('vendor-views.product.partials._edit_sku_combinations',['combinations'=>json_decode($product['variation'],true)])
current_stock }} step="1" placeholder="{{ translate('quantity') }}" name="current_stock" class="form-control" required>
vendor-views/product/partials/_choices.blade.php000064400000001440150075320660016031 0ustar00@foreach($choice_options as $key=>$choice)
@endforeach vendor-views/product/partials/_edit_sku_combinations.blade.php000064400000005101150075320660020766 0ustar00@if(count($combinations) > 0) @foreach ($combinations as $key => $combination) @endforeach
{{ $key+1 }}
@endif vendor-views/product/edit.blade.php000064400000241335150075320660013374 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate(request('product-gallery')==1 ?'product_Add' :'product_Edit')) @push('css_or_js') @endpush @section('content')

{{ translate(request('product-gallery')==1 ?'product_Add' :'product_Edit') }}

@csrf
@foreach($languages as $language) locale == $language && $translation->key == "name") { $translate[$language]['name'] = $translation->value; } if ($translation->locale == $language && $translation->key == "description") { $translate[$language]['description'] = $translation->value; } } } ?>
@endforeach

{{ translate('general_setup') }}

@if($brandSetting)
@endif
{{ translate('file_type') }}: {{ "jpg, jpeg, png, gif, zip, pdf" }}

{{ translate('Pricing_&_others') }}

tax ?? 0 }} step="0.01" placeholder="{{ translate('tax') }}" name="tax" id="tax" class="form-control" required>

{{ translate('product_variation_setup') }}

@include('vendor-views.product.partials._choices',['choice_no'=>json_decode($product['attributes']),'choice_options'=>json_decode($product['choice_options'],true)])
@include('vendor-views.product.partials._edit_sku_combinations',['combinations'=>json_decode($product['variation'],true)])
{{ THEME_RATIO[theme_root_path()]['Product Image'] }}
@if (File::exists(base_path('storage/app/public/product/thumbnail/'. $product->thumbnail))) @else @endif

{{ translate('Upload_Image') }}

{{ translate('image_format') }} : {{ "Jpg, png, jpeg, webp" }}
{{ translate('image_size') }} : {{ translate('max') }} {{ "2 MB" }}

{{ translate('must_upload_colour_wise_images_first') }} {{ translate('colour_is_shown_in_the_image_section_top_right.') }}

{{ THEME_RATIO[theme_root_path()]['Product Image'] }}

{{ translate('upload_additional_product_images') }}

@if(count($product->colors) == 0) @foreach (json_decode($product->images) as $key => $photo) @php($unique_id = rand(1111,9999))
@if(request('product-gallery')) @else @endif
@if(request('product-gallery')) @endif

{{ translate('Upload_Image') }}

@endforeach @else @if($product->color_image) @foreach (json_decode($product->color_image) as $photo) @if($photo->color == null) @php($unique_id = rand(1111,9999))
@if(request('product-gallery')) @else @endif
@if(request('product-gallery')) @endif

{{ translate('Upload_Image') }}

@endif @endforeach @else @foreach (json_decode($product->images) as $key => $photo) @php($unique_id = rand(1111,9999))
@if(request('product-gallery')) @else @endif
@if(request('product-gallery')) @endif

{{ translate('Upload_Image') }}

@endforeach @endif @endif

{{ translate('Upload_Image') }}

{{ translate('product_video') }}

( {{ translate('optional_please_provide_embed_link_not_direct_link') }}. )

{{ translate('seo_section') }}

{{ THEME_RATIO[theme_root_path()]['Meta Thumbnail'] }}
@if (File::exists(base_path('storage/app/public/product/meta/'. $product['meta_image']))) @else @endif

{{ translate('Upload_Image') }}

@if(request('product-gallery')) @endif
@endsection @push('script') @endpush vendor-views/product/view.blade.php000064400000126515150075320660013423 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('product_Preview')) @section('content')

{{ translate('product_details') }}

@if ($productActive) {{ translate('view_live') }} @endif
@if($product->digital_file_ready && file_exists(base_path('storage/app/public/product/digital-product/'.$product->digital_file_ready))) {{ translate('download') }} @endif
@php($languages = getWebConfig(name:'pnc_language')) @php($defaultLanguage = 'en') @php($defaultLanguage = $languages[0])
@if ($product->product_type == 'physical' && !empty($product->color_image) && count(json_decode($product->color_image))>0) @foreach (json_decode($product->color_image) as $colorImageKey => $photo) @if( $colorImageKey < 3 || count(json_decode($product->color_image, true)) < 5) @elseif($colorImageKey == 3)
+{{ (count(json_decode($product->color_image, true)) - $colorImageKey) + 1 }}
@else @endif @endforeach @else @foreach (json_decode($product->images) as $imageKey => $photo) @if($imageKey < 3 || count(json_decode($product->images, true)) < 5) @elseif($imageKey == 3)
+{{ (count(json_decode($product->images, true)) - $imageKey) + 1 }}
@else @endif @endforeach @endif
{{ count($product->orderDetails) }} {{ translate('orders') }}
{{ count($product->rating)>0 ? number_format($product->rating[0]->average, 2, '.', ' '):0 }}
{{ translate('rating') }}
    @php($total = $product->reviews->count())
  • @php($five = getRatingCount($product['id'], 5)) {{ translate('5') }} {{ translate('star') }}
    {{ $five }}
  • @php($four=getRatingCount($product['id'],4)) {{ translate('4') }} {{ translate('star') }}
    {{ $four }}
  • @php($three=getRatingCount($product['id'],3)) {{ translate('3') }} {{ translate('star') }}
    {{ $three }}
  • @php($two=getRatingCount($product['id'],2)) {{ translate('2') }} {{ translate('star') }}
    {{ $two }}
  • @php($one=getRatingCount($product['id'],1)) {{ translate('1') }} {{ translate('star') }}
    {{ $one }}
{{ $product->reviews->whereNotNull('comment')->count() }} {{ translate('reviews') }}
{{translate('Status')}} @if($product['request_status'] == 0) {{translate('pending')}} @elseif($product['request_status'] == 1) {{translate('approved')}} @else {{translate('rejected')}} @endif
@foreach($languages as $language) locale == $language && $translation->key == "name") { $translate[$language]['name'] = $translation->value; } if ($translation->locale == $language && $translation->key == "description") { $translate[$language]['description'] = $translation->value; } } } ?>

{{ $translate[$language]['name']??$product['name']}}

{!! $translate[$language]['description']??$product['details'] !!}
@endforeach

{{ translate('total_sold') }} :

{{ $product['qtySum'] }}

{{ translate('total_sold_amount') }} :

{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: ($product['priceSum'] - $product['discountSum']))) }}

{{ translate('general_information') }}

{{ translate('brand') }} : {{isset($product->brand) ? $product->brand->default_name : translate('brand_not_found') }}
{{ translate('category') }} : {{isset($product->category) ? $product->category->default_name : translate('category_not_found') }}
{{ translate('product_type') }} : {{ translate($product->product_type) }}
@if($product->product_type == 'physical')
{{ translate('product_unit') }} : {{ $product['unit']}}
{{ translate('current_Stock') }} : {{ $product->current_stock}}
@endif
{{ translate('product_SKU') }} : {{ $product->code}}

{{ translate('price_information') }}

{{ translate('unit_price') }} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product->unit_price), currencyCode: getCurrencyCode()) }}
{{ translate('tax') }} : @if ($product->tax_type =='percent') {{ $product->tax}}% ({{ $product->tax_model}}) @else {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product->tax)) }} ({{ $product->tax_model }}) @endif
@if($product->product_type == 'physical')
{{ translate('shipping_cost') }} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product->shipping_cost)) }} @if ($product->multiply_qty == 1) ({{ translate('multiply_with_quantity') }}) @endif
@endif @if($product->discount > 0)
{{ translate('discount') }} : @if ($product->discount_type == 'percent') {{ $product->discount }}% @else {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product->discount), currencyCode: getCurrencyCode()) }} @endif
@endif
@if(count($product->tags)>0)

{{ translate('tags') }}

@foreach ($product->tags as $key=>$tag) {{ $tag['tag'] }} @if ($key === (count($product->tags)-1)) @break @endif , @endforeach
@endif
@if(!empty($product['variation']) && count(json_decode($product['variation'])) >0)
@foreach(json_decode($product['variation']) as $key=>$value) @endforeach
{{ translate('SKU') }} {{ translate('variation_wise_price') }} {{ translate('stock') }}
{{$value->sku}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $value->price), currencyCode: getCurrencyCode())}} {{($value->qty)}}
@endif
{{translate('product_SEO_&_meta_data')}}
{{$product['meta_title'] ?? translate('meta_title_not_found').' '.'!'}}

{{$product['meta_description'] ?? translate('meta_description_not_found').' '.'!'}}

@if($product['meta_image']) @endif
{{translate('product_video')}}
@if ($product->denied_note && $product['request_status'] == 2)
{{translate('reject_reason')}}
{{ $product->denied_note}}
@endif
@foreach($reviews as $key=>$review) @if(isset($review->customer)) @endif @endforeach
{{ translate('SL') }} {{ translate('reviewer') }} {{ translate('rating') }} {{ translate('review') }} {{ translate('date') }} {{ translate('action') }}
{{ $reviews->firstItem()+$key}}
{{ $review->customer['f_name']." ".$review->customer['l_name']}} {{ $review->customer->email ?? "" }}
{{ $review->rating }}

{{ $review['comment']}}

@if(json_decode($review->attachment)) @foreach (json_decode($review->attachment) as $img) @endforeach @endif
{{date('d M Y H:i:s',strtotime($review['updated_at'])) }}
{!! $reviews->links() !!}
@if(count($reviews)==0) @include('layouts.back-end._empty-state',['text'=>'no_review_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush vendor-views/product/barcode.blade.php000064400000013640150075320660014042 0ustar00@extends('layouts.back-end.app-seller') @section('title', $product->name . ' '.translate('barcode').' ' . date('Y/m/d')) @push('css_or_js') @endpush @section('content')

{{ translate('generate_Barcode') }}

{{ translate('code') }} {{ translate('name') }} {{ translate('quantity') }} {{ translate('action') }}
@if ($product->code) {{$product->code}} @else {{ translate('update_your_product_code') }} @endif {{ Str::limit($product->name, 20) }} {{ translate('maximum_quantity_270') }}
{{ translate('reset') }}

{{ translate("this_page_is_for_A4_size_page_printer_so_it_will_not_be_visible_in_smaller_devices.") }}

@endsection vendor-views/product/add-new.blade.php000064400000145474150075320660013775 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('product_Add')) @push('css_or_js') @endpush @section('content')

{{ translate('add_New_Product') }}

@csrf
{{translate('add_info_from_gallery')}}
@foreach ($languages as $lang)
@endforeach

{{ translate('general_setup') }}

@if($brandSetting)
@endif
{{ translate('file_type').': jpg, jpeg, png, gif, zip, pdf' }}

{{ translate('pricing_&_others') }}

{{ translate('product_variation_setup') }}

{{ THEME_RATIO[theme_root_path()]['Product Image'] }}

{{ translate('Upload_Image') }}

{{ translate('image_format') }} : {{ "Jpg, png, jpeg, webp," }}
{{ translate('image_size') }} : {{ translate('max') }} {{ "2 MB" }}

{{ THEME_RATIO[theme_root_path()]['Product Image'] }}

{{ translate('must_upload_colour_wise_images_first._Colour_is_shown_in_the_image_section_top_right') }} .

{{ THEME_RATIO[theme_root_path()]['Product Image'] }}

{{ translate('upload_additional_product_images') }}

{{ translate('Upload_Image') }}

{{ translate('product_video') }}

({{ translate('optional_please_provide_embed_link_not_direct_link') }}.)

{{ translate('seo_section') }}

{{ THEME_RATIO[theme_root_path()]['Meta Thumbnail'] }}

{{ translate('Upload_Image') }}

@endsection @push('script') @endpush vendor-views/product/product-gallery.blade.php000064400000034141150075320660015557 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('product_gallery')) @section('content')

{{translate('product_gallery')}}

{{$products->total()}}
@foreach($products as $product)

{{ translate('general_information') }}

{{ translate('brand') }} : {{isset($product->brand) ? $product->brand->default_name : translate('brand_not_found') }}
{{ translate('category') }} : {{isset($product->category) ? $product->category->default_name : translate('category_not_found') }}
{{ translate('product_type') }} : {{ translate($product->product_type) }}
@if($product->product_type == 'physical')
{{ translate('product_unit') }} : {{ $product['unit']}}
{{ translate('current_Stock') }} : {{ $product->current_stock}}
@endif
{{ translate('product_SKU') }} : {{ $product->code}}
@if ($product->product_type == 'physical' && count(json_decode($product->choice_options)) >0 || count(json_decode($product->colors)) >0 )

{{ translate('available_variations') }}

@if (json_decode($product->choice_options) != null) @foreach (json_decode($product->choice_options) as $key => $value)
@if (array_filter($value->options) != null) {{ translate($value->title) }} : @foreach ($value->options as $index => $option) {{ $option }} @if ($index === array_key_last(($value->options))) @break @endif , @endforeach @endif
@endforeach @endif @if (isset($product['colorsName']))
{{ translate('color') }} : @foreach ($product['colorsName'] as $key => $color) {{ $color }} @if ($key === array_key_last($product['colorsName'])) @break @endif , @endforeach
@endif
@endif @if(count($product->tags)>0)

{{ translate('tags') }}

@foreach ($product->tags as $key=>$tag) {{ $tag['tag'] }} @if ($key === (count($product->tags)-1)) @break @endif , @endforeach
@endif
{!! $product['details'] !!}
@endforeach
@if(count($products)==0) @include('layouts.back-end._empty-state',['text'=>'no_product_found'],['image'=>'default']) @endif
{{ $products->links() }}
@endsection vendor-views/product/list.blade.php000064400000045115150075320660013420 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate($type=='new-request'?'pending_products':($type=='approved'?'approved_products':'product_list'))) @section('content')

{{ translate($type=='new-request'?'pending_for_approval_products':($type=='approved'?'approved_products':'product_list')) }} {{ $products->total() }}

{{ translate('filter_Products') }}

{{ translate('reset') }}
@if($type != 'new-request' ) @endif @foreach($products as $key=>$product) @if($type != 'new-request' ) @endif @endforeach
{{ translate('SL') }} {{ translate('product_name') }} {{ translate('product_type') }} {{ translate('unit_price') }} {{ translate('verify_status') }}{{ translate('active_status') }}{{ translate('action') }}
{{ $products->firstItem()+$key}} {{ Str::limit($product['name'], 20) }} {{ translate($product['product_type']) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product['unit_price']), currencyCode: getCurrencyCode()) }} @if($product->request_status == 0) @elseif($product->request_status == 1) @elseif($product->request_status == 2) @endif @php($productName = str_replace("'",'`',$product['name']))
@csrf
@if($type != 'new-request' ) @endif
@csrf @method('delete')
{{ $products->links() }}
@if(count($products)==0) @include('layouts.back-end._empty-state',['text'=>'no_product_found'],['image'=>'default']) @endif
@endsection vendor-views/product/stock-limit-list.blade.php000064400000034134150075320660015654 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('stock_limit_products')) @section('content')

{{ translate('limited_Stocked_Products_List') }} {{ $products->total() }}

{{ translate('the_products_are_shown_in_this_list,_which_quantity_is_below') }} {{ $stockLimit }}

@foreach($products as $key => $product) @endforeach
{{ translate('SL') }} {{ translate('product_Name') }} {{ translate('unit_price') }} {{ translate('verify_status') }} {{ translate('quantity') }} {{ translate('orders') }} {{ translate('active_Status') }} {{ translate('action') }}
{{ $products->firstItem()+$key}} {{ Str::limit($product['name'], 20) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product['unit_price']), currencyCode: getCurrencyCode()) }} @if($product->request_status == 0) @elseif($product->request_status == 1) @elseif($product->request_status == 2) @endif
{{ $product['current_stock']}}
{{ $product['order_details_count']}}
@csrf
@csrf @method('delete')
{{ $products->links() }}
@if(count($products)==0) @include('layouts.back-end._empty-state',['text'=>'no_product_found'],['image'=>'default']) @endif
@endsection vendor-views/product/barcode-pdf.blade.php000064400000002521150075320660014605 0ustar00 {{ translate("product_Barcode") }} @if ($quantity)
@for ($i = 0; $i < $quantity; $i++) @if ($i % 3 == 0 && $i != 0)
@endif
{{ getWebConfig(name: 'company_name') }} {{ Str::limit($product->name, 30) }} {{ $product['selling_price'] . ' ' . setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product->unit_price), currencyCode: getCurrencyCode()) }}
{!! DNS1D::getBarcodeHTML($product->code, 'C128') !!}

{{ translate('code') }} : {{ $product->code }}

@endfor
@endif vendor-views/transaction/transaction-report-inline-menu.blade.php000064400000000706150075320660021363 0ustar00
vendor-views/transaction/order_wise_pdf.blade.php000064400000036024150075320660016304 0ustar00 {{ 'Order Transaction Statement - '.$transaction->order_id }}
{{translate('order_Transaction_Statement')}}
{{translate('date')}} : {{ date('F d, Y') }}
{{translate('order_ID')}} : {{ $transaction['order_id'] }}
{{translate('date')}} : {{ \Carbon\Carbon::parse($transaction->created_at)->format('d/m/Y') }}
{{translate('vendor_Info')}} : @if($transaction['seller_is'] == 'admin') {{ getWebConfig('company_name') }} @else @if (isset($transaction->seller)) {{ $transaction->seller->shop->name }} @else {{translate('not_found')}} @endif @endif
{{translate('customer_Info')}} : @if (isset($transaction->customer)) {{ $transaction->customer->f_name}} {{ $transaction->customer->l_name }} @elseif($transaction->order->is_guest) {{translate('guest_customer')}} @else {{translate('not_found')}} @endif
       
{{translate('delivered_By')}} : @if($transaction->order->delivery_type =='self_delivery' && !empty($transaction->order->delivery_man_id)) {{translate('delivery_man')}} {{ $transaction->order->deliveryMan->seller_id == 0 ? 'admin':'seller' }} @else {{ $transaction->delivery_type }} @endif
{{translate('payment_Method')}} : @if(in_array($transaction->order->payment_method, ['cash', 'cash_on_delivery', 'pay_by_wallet', 'offline_payment'])) {{ ucfirst(str_replace('_', ' ', $transaction->order->payment_method)) }} @else {{translate('digital_payment')}} @endif
{{translate('payment_Status')}} : {{ ucfirst($transaction->order->payment_status) }}
   
{{translate('SL')}} {{translate('details')}} {{translate('amount')}}
1 {{translate('total_Product_Amount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order_details_sum_price * $transaction->order_details_sum_qty), currencyCode: getCurrencyCode()) }}
2 {{translate('product_Discount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order_details_sum_discount), currencyCode: getCurrencyCode()) }}
3 {{translate('coupon_Discount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order->discount_amount), currencyCode: getCurrencyCode()) }}
4 {{translate('discounted_Amount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: ($transaction->order_details_sum_price * $transaction->order_details_sum_qty) - $transaction->order_details_sum_discount - (isset($transaction->order->coupon) && $transaction->order->coupon->coupon_type != 'free_delivery'?$transaction->order->discount_amount:0)), currencyCode: getCurrencyCode()) }}
5 {{translate('VAT/TAX')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['tax']), currencyCode: getCurrencyCode()) }}
6 {{translate('shipping_Charge')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order->shipping_cost), currencyCode: getCurrencyCode()) }}
7 {{translate('deliveryman_incentive')}} {{ ($transaction->order->delivery_type=='self_delivery' && $transaction->order->shipping_responsibility=='sellerwise_shipping' && $transaction->order->delivery_man_id) ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order->deliveryman_charge), currencyCode: getCurrencyCode()) : setCurrencySymbol(amount: usdToDefaultCurrency(amount: 0), currencyCode: getCurrencyCode()) }}
8 {{translate('order_Amount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order->order_amount), currencyCode: getCurrencyCode()) }}
{{translate('additional_Information')}} {{translate('totals')}}
{{translate('admin_Discount')}} @php($admin_coupon_discount = ($transaction->order->coupon_discount_bearer == 'inhouse' && $transaction->order->discount_type == 'coupon_discount') ? $transaction->order->discount_amount : 0) @php($admin_shipping_discount = ($transaction->order->free_delivery_bearer=='admin' && $transaction->order->is_shipping_free) ? $transaction->order->extra_discount : 0) {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $admin_coupon_discount+$admin_shipping_discount), currencyCode: getCurrencyCode()) }}
{{ translate('vendor_Discount') }} @php($seller_coupon_discount = ($transaction->order->coupon_discount_bearer == 'seller' && $transaction->order->discount_type == 'coupon_discount') ? $transaction->order->discount_amount : 0) @php($seller_shipping_discount = ($transaction->order->free_delivery_bearer=='seller' && $transaction->order->is_shipping_free) ? $transaction->order->extra_discount : 0) {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $seller_coupon_discount+$seller_shipping_discount), currencyCode: getCurrencyCode()) }}
{{ translate('admin_Commission') }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['admin_commission']), currencyCode: getCurrencyCode()) }}
{{translate('vendor_Net_Income')}} order->deliveryMan) && $transaction->order->deliveryMan->seller_id != '0') { $seller_net_income += $transaction['delivery_charge']; } if ($transaction['seller_is'] == 'seller') { $seller_net_income += $transaction['order_amount'] + $transaction['tax'] - $transaction['admin_commission']; } if($transaction->order->delivery_type == 'self_delivery' && $transaction->order->shipping_responsibility == 'sellerwise_shipping' && $transaction->order->delivery_man_id && $transaction->order->seller_is == 'seller'){ $seller_net_income -= $transaction->order->deliveryman_charge; } if ($transaction['seller_is'] == 'seller') { if ($transaction->order->shipping_responsibility == 'inhouse_shipping') { $seller_net_income += $transaction->order->coupon_discount_bearer == 'inhouse' ? $admin_coupon_discount : 0; $seller_net_income -= ($transaction->order->coupon_discount_bearer == 'seller' && $transaction->order->coupon->coupon_type == 'free_delivery') ? $admin_coupon_discount : 0; $seller_net_income -= ($transaction->order->free_delivery_bearer == 'seller') ? $admin_shipping_discount : 0; } elseif ($transaction->order->shipping_responsibility == 'sellerwise_shipping') { $seller_net_income += $transaction->order->coupon_discount_bearer == 'inhouse' ? $admin_coupon_discount : 0; $seller_net_income += $transaction->order->free_delivery_bearer == 'admin' ? $admin_shipping_discount : 0; $seller_shipping_discount = 0; } } ?> {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $seller_net_income-$seller_shipping_discount), currencyCode: getCurrencyCode()) }}








{{translate('phone')}} : {{ $company_phone }}
{{translate('email')}} : {{ $company_email }}
{{url('/')}}
{{translate('all_copy_right_reserved_©_'.date('Y').'_').$company_name}}
vendor-views/transaction/order_wise_expense_pdf.blade.php000064400000013457150075320660020040 0ustar00 {{ 'Expense Transaction Statement '.$transaction->order_id }}
{{translate('expense_Transaction_Statement')}}
{{translate('date')}} : {{ date('F d, Y') }}
{{translate('transaction_date')}} : {{ date_format($transaction->orderTransaction->updated_at, 'd F Y') }}
{{translate('order_id')}} : {{ $transaction->id }}
     
{{translate('XID')}} : {{ ucfirst($transaction->orderTransaction->transaction_id) }}
{{translate('expense_type')}} : {{ $transaction->coupon_discount_bearer == 'seller'?(isset($transaction->coupon->coupon_type) ? ($transaction->coupon->coupon_type == 'free_delivery' ? 'Free Delivery Promotion':ucwords(str_replace('_', ' ', $transaction->coupon->coupon_type))) : ''):'' }} {{ $transaction->free_delivery_bearer == 'seller'?ucwords(str_replace('_', ' ', $transaction->extra_discount_type)):'' }}
{{translate('SL')}} {{translate('details')}} {{translate('amount')}}
1 {{translate('expense_Amount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: ($transaction->coupon_discount_bearer == 'seller'?$transaction->discount_amount:0) + ($transaction->free_delivery_bearer=='seller'?$transaction->extra_discount:0)), currencyCode: getCurrencyCode()) }}

































{{translate('phone')}} : {{ $company_phone }}
{{translate('email')}} : {{ $company_email }}
{{url('/')}}
{{translate('all_copy_right_reserved_©_'.date('Y').'_').$company_name}}
vendor-views/transaction/expense_transaction_summary_report_pdf.blade.php000064400000013112150075320660023357 0ustar00 {{ 'Expense Transaction Statement - '.$data['duration'] }}
{{translate('expense_Transaction_Statement')}}
{{translate('date')}} : {{ date('F d, Y') }}
{{translate('duration')}} : {{ $data['duration'] }}

{{translate('vendor_Info')}} : {{ $data['shop_name'] }}
       
{{translate('SL')}} {{translate('details')}} {{translate('amount')}}
1 {{translate('total_Expense_Amount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_expense']), currencyCode: getCurrencyCode()) }}
2 {{translate('free_Delivery_Amount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['free_delivery']), currencyCode: getCurrencyCode()) }}  
3 {{translate('coupon_Discount_Amount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['coupon_discount']), currencyCode: getCurrencyCode()) }}  
4 {{translate('free_Shipping_Over_Order_Amount_Discount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['free_over_amount_discount']), currencyCode: getCurrencyCode()) }}






























{{translate('phone')}} : {{ $data['company_phone'] }}
{{translate('email')}} : {{ $data['company_email'] }}
{{url('/')}}
{{translate('all_copy_right_reserved_©_'.date('Y').'_').$data['company_name']}}
vendor-views/transaction/expense-list.blade.php000064400000032360150075320660015730 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('expense_Transactions')) @section('content')

{{translate('transaction_report')}}

@include('vendor-views.transaction.transaction-report-inline-menu')

{{translate('filter_Data')}}

{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $total_expense), currencyCode: getCurrencyCode()) }}

{{translate('total_Expense')}} img

{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $free_delivery), currencyCode: getCurrencyCode()) }}

{{translate('free_Delivery')}}

{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $coupon_discount), currencyCode: getCurrencyCode()) }}

{{translate('coupon_Discount')}} img
@foreach($expense_transaction_chart['discount_amount'] as $amount) @php($chartVal[] = usdToDefaultCurrency(amount: $amount)) @endforeach
@include('layouts.back-end._apexcharts',['title'=>'expense_Statistics','statisticsValue'=>$chartVal,'label'=>array_keys($expense_transaction_chart['discount_amount']),'statisticsTitle'=>'total_expense_amount'])

{{translate('total_Transactions')}} {{ $expense_transactions_table->total() }}

@foreach($expense_transactions_table as $key=>$transaction) @endforeach
{{translate('SL')}} {{translate('XID')}} {{translate('transaction_Date')}} {{translate('order_ID')}} {{translate('expense_Amount')}} {{translate('expense_Type')}} {{translate('action')}}
{{ $expense_transactions_table->firstItem()+$key }} {{ $transaction->orderTransaction->transaction_id }} {{ date_format($transaction->updated_at, 'd F Y, h:i:s a') }} {{$transaction->id}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: ($transaction->coupon_discount_bearer == 'seller'?$transaction->discount_amount:0) + ($transaction->free_delivery_bearer=='seller'?$transaction->extra_discount:0)), currencyCode: getCurrencyCode()) }} {{ $transaction->coupon_discount_bearer == 'seller'?(isset($transaction->coupon->coupon_type) ? ($transaction->coupon->coupon_type == 'free_delivery' ? 'Free Delivery Promotion':ucwords(str_replace('_', ' ', $transaction->coupon->coupon_type))) : ''):'' }}
{{ $transaction->free_delivery_bearer == 'seller' ? ucwords(str_replace('_', ' ', $transaction->extra_discount_type)):'' }}
{{$expense_transactions_table->links()}}
@if(count($expense_transactions_table)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush vendor-views/transaction/order-list.blade.php000064400000061633150075320660015401 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('order_Transactions')) @section('content')

{{translate('transaction_report')}}

@include('vendor-views.transaction.transaction-report-inline-menu')

{{translate('filter_Data')}}

{{ $product_data['total_products'] }}

{{translate('total_Products')}}

{{ $product_data['active_products'] }}

{{translate('active_Products')}}

{{ $product_data['inactive_products'] }}

{{translate('inactive_Products')}}

{{ $product_data['pending_products'] }}

{{translate('pending_Products')}}
@foreach($order_transaction_chart['order_amount'] as $amount) @php($chartVal[] = usdToDefaultCurrency(amount: $amount)) @endforeach
@include('layouts.back-end._apexcharts',['title'=>'order_Statistics','statisticsValue'=>$chartVal,'label'=>array_keys($order_transaction_chart['order_amount']),'statisticsTitle'=>'total_order_amount'])
{{translate('payment_Statistics')}}

{{ getCurrencySymbol(currencyCode: getCurrencyCode()) }}{{getFormatCurrency(amount: usdToDefaultCurrency(amount: $payment_data['total_payment'])) }}

{{translate('completed_payments')}}
{{translate('cash_payments')}} ({{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['cash_payment']), currencyCode: getCurrencyCode()) }})
{{translate('digital_payments')}} ({{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['digital_payment']), currencyCode: getCurrencyCode()) }})       
{{translate('wallet')}} ({{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['wallet_payment']), currencyCode: getCurrencyCode()) }})
{{translate('offline_payments')}} ({{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['offline_payment']), currencyCode: getCurrencyCode()) }})

{{translate('total_Transactions')}} {{ $transactions->total() }}

@foreach($transactions as $key=>$transaction) @if($transaction->order) @endif @endforeach
{{translate('SL')}} {{translate('order_id')}} {{translate('customer_name')}} {{translate('total_product_amount')}} {{translate('product_discount')}} {{translate('coupon_discount')}} {{translate('discounted_amount')}} {{translate('VAT/TAX')}} {{translate('shipping_charge')}} {{translate('order_amount')}} {{translate('delivered_by')}} {{translate('deliveryman_incentive')}} {{translate('admin_discount')}} {{translate('vendor_discount') }} {{translate('admin_commission') }} {{translate('vendor_net_income')}} {{translate('payment_method')}} {{translate('payment_Status')}} {{translate('action')}}
{{$transactions->firstItem()+$key}} {{$transaction['order_id']}} @if (!$transaction->order->is_guest && isset($transaction->customer)) {{ $transaction->customer->f_name}} {{ $transaction->customer->l_name }} @elseif($transaction->order->is_guest) {{translate('guest_customer')}} @else {{translate('not_found')}} @endif {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->orderDetails[0]->order_details_sum_price), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->orderDetails[0]->order_details_sum_discount), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order->discount_amount), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->orderDetails[0]->order_details_sum_price - $transaction->orderDetails[0]->order_details_sum_discount - (isset($transaction->order->coupon) && $transaction->order->coupon->coupon_type != 'free_delivery'?$transaction->order->discount_amount:0)), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['tax']), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order->shipping_cost), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order->order_amount), currencyCode: getCurrencyCode()) }} {{$transaction['delivered_by']}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: ($transaction->order->delivery_type == 'self_delivery' && $transaction->order->shipping_responsibility == 'sellerwise_shipping') ? $transaction->order->deliveryman_charge : 0), currencyCode: getCurrencyCode()) }} @php($admin_coupon_discount = ($transaction->order->coupon_discount_bearer == 'inhouse' && $transaction->order->discount_type == 'coupon_discount') ? $transaction->order->discount_amount : 0) @php($admin_shipping_discount = ($transaction->order->free_delivery_bearer=='admin' && $transaction->order->is_shipping_free) ? $transaction->order->extra_discount : 0) {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $admin_coupon_discount+$admin_shipping_discount), currencyCode: getCurrencyCode()) }} @php($seller_coupon_discount = ($transaction->order->coupon_discount_bearer == 'seller' && $transaction->order->discount_type == 'coupon_discount') ? $transaction->order->discount_amount : 0) @php($seller_shipping_discount = ($transaction->order->free_delivery_bearer=='seller' && $transaction->order->is_shipping_free) ? $transaction->order->extra_discount : 0) {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $seller_coupon_discount + $seller_shipping_discount), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['admin_commission']), currencyCode: getCurrencyCode()) }} order->delivery_man) && $transaction->order->delivery_man->seller_id != '0') { $seller_net_income += $transaction['delivery_charge']; } if ($transaction['seller_is'] == 'seller') { $seller_net_income += $transaction['order_amount'] + $transaction['tax'] - $transaction['admin_commission']; } if($transaction->order->delivery_type == 'self_delivery' && $transaction->order->shipping_responsibility == 'sellerwise_shipping' && $transaction->order->seller_is == 'seller'){ $seller_net_income -= $transaction->order->deliveryman_charge; } // new if ($transaction['seller_is'] == 'seller') { if ($transaction->order->shipping_responsibility == 'inhouse_shipping') { $seller_net_income += $transaction->order->coupon_discount_bearer == 'inhouse' ? $admin_coupon_discount : 0; $seller_net_income -= ($transaction->order->coupon_discount_bearer == 'seller' && $transaction->order->coupon->coupon_type == 'free_delivery') ? $admin_coupon_discount : 0; $seller_net_income -= ($transaction->order->free_delivery_bearer == 'seller') ? $admin_shipping_discount : 0; } elseif ($transaction->order->shipping_responsibility == 'sellerwise_shipping') { $seller_net_income += $transaction->order->coupon_discount_bearer == 'inhouse' ? $admin_coupon_discount : 0; $seller_net_income += $transaction->order->free_delivery_bearer == 'admin' ? $admin_shipping_discount : 0; $seller_shipping_discount = 0; } } ?> {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $seller_net_income-$seller_shipping_discount), currencyCode: getCurrencyCode()) }} {{str_replace('_',' ',$transaction['payment_method'])}}
{{translate(str_replace('_',' ',$transaction['status']))}}
{{$transactions->links()}}
@if(count($transactions)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush vendor-views/transaction/order_transaction_summary_report_pdf.blade.php000064400000024717150075320660023040 0ustar00 {{ 'Order Transaction Statement - '.$duration }}
{{translate('order_Transaction_Statement')}}
{{translate('date')}} : {{ date('F d, Y') }}
{{translate('duration')}} : {{ $duration }}
{{translate('vendor_Info')}} : {{ $seller_info }}
{{translate('customer_Info')}} : {{ $customer_info }}
{{translate('status')}} : {{ $status }}
       
{{translate('total_Order')}} : {{ $data['total_orders'] }}
{{translate('completed_Orders')}} : {{ $data['completed_order'] }}
{{translate('ongoing_Orders')}} : {{ $data['ongoing_order'] }}
{{translate('canceled_Orders')}} : {{ $data['canceled_order'] }}
{{translate('SL')}} {{translate('details')}} {{translate('amount')}}
1 {{translate('total_Ordered_Product_Price')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_ordered_product_price']), currencyCode: getCurrencyCode()) }}
2 {{translate('total_Product_Discount')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_product_discount']), currencyCode: getCurrencyCode()) }}
3 {{translate('total_Coupon_Discount')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_coupon_discount']), currencyCode: getCurrencyCode()) }}
4 {{translate('total_Discounted_Amount')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_discounted_amount']), currencyCode: getCurrencyCode()) }}
5 {{translate('total')}} {{translate('VAT/TAX')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_tax']), currencyCode: getCurrencyCode()) }}
6 {{translate('total_Delivery_Charge')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_delivery_charge']), currencyCode: getCurrencyCode()) }}
6 {{translate('total_Deliveryman_incentive')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_deliveryman_incentive']), currencyCode: getCurrencyCode()) }}
7 {{translate('total_Order_Amount')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_order_amount']), currencyCode: getCurrencyCode()) }}
{{translate('additional')}} {{translate('information')}} {{translate('totals')}}
{{translate('admin_Discount')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_admin_discount']), currencyCode: getCurrencyCode()) }}
{{ translate('vendor_Discount') }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_vendor_discount']), currencyCode: getCurrencyCode()) }}
{{ translate('admin_Commission') }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_admin_commission']), currencyCode: getCurrencyCode()) }}
{{translate('vendor_Net_Income')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_vendor_net_income']), currencyCode: getCurrencyCode()) }}








{{translate('phone')}} : {{ $company_phone }}
{{translate('email')}} : {{ $company_email }}
{{url('/')}}
{{translate('all_copy_right_reserved_©_'.date('Y').'_').$company_name}}
vendor-views/delivery-man/withdraw/index.blade.php000064400000011072150075320660016314 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('withdraw_Request')) @push('css_or_js') @endpush @section('content')

{{translate('withdraw_Request')}}

{{ translate('withdraw_Request_Table')}} {{ $withdrawRequests->total() }}
@include('vendor-views.delivery-man.withdraw._table')
@endsection @push('script_2') @endpush vendor-views/delivery-man/withdraw/_table.blade.php000064400000006154150075320660016440 0ustar00
@foreach($withdrawRequests as $key=>$withdrawRequest) @endforeach
{{translate('SL')}} {{translate('amount')}} {{translate('Name') }} {{translate('request_time')}} {{translate('status')}} {{translate('action')}}
{{$withdrawRequests->firstItem()+$key}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $withdrawRequest['amount']), currencyCode: getCurrencyCode(type: 'default'))}} @if (isset($withdrawRequest->deliveryMan)) {{ $withdrawRequest->deliveryMan->f_name . ' ' . $withdrawRequest->deliveryMan->l_name }} @else {{translate('not_found')}} @endif {{ date_format( $withdrawRequest->created_at, 'd-M-Y, h:i:s A') }} @if($withdrawRequest->approved==0) @elseif($withdrawRequest->approved==1) @else @endif
@if (isset($withdrawRequest->deliveryMan)) @else @endif
@if(count($withdrawRequests)==0) @include('layouts.back-end._empty-state',['text'=>'no_withdraw_request_found'],['image'=>'default']) @endif
{{$withdrawRequests->links()}}
vendor-views/delivery-man/withdraw/_details.blade.php000064400000015741150075320660017000 0ustar00

{{translate('withdraw_information')}}

{{translate('withdraw_Amount').' : '}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $details['amount']), currencyCode: getCurrencyCode())}}
{{translate('request_time').' : '}} {{ date_format( $details['created_at'], 'd-M-Y, h:i:s A') }}
{{translate('bank_info')}}
{{translate('bank_name')}}: {{$details?->deliveryMan?->bank_name ?? translate('no_data_found')}}
{{translate('branch')}}: {{$details?->deliveryMan?->branch ?? translate('no_data_found') }}
{{translate('holder_name')}} : {{$details?->deliveryMan?->holder_name ?? translate('no_data_found') }}
{{translate('account_no')}}: {{$details?->deliveryMan?->account_no ?? translate('no_data_found') }}
{{translate('deliveryman_info')}}
{{translate('name')}}: {{$details?->deliveryMan?->f_name}} {{$details?->deliveryMan?->l_name}}
{{translate('email')}}: {{$details?->deliveryMan?->email}}
{{translate('phone')}}: {{$details?->deliveryMan?->phone}}
@if($details['approved'] != 0)
{{translate(($details['approved'] ==1 ? 'approved' : 'denied').'_'.'Note')}}
{{$details['transaction_note']}}
@endif
@csrf
{{translate('approval_note')}}
@csrf
{{translate('denial_note')}}
@if ($details['approved'] == 0) @endif
vendor-views/delivery-man/index.blade.php000064400000027627150075320660014500 0ustar00@extends('layouts.back-end.app-seller') @section('title',translate('add_new_delivery_man')) @section('content')

{{translate('add_new_deliveryman')}}

@csrf
* ( {{translate('ratio')}} 1:1 )
{{translate('delivery_man_image')}}
@endsection @push('script_2') @endpush vendor-views/delivery-man/rating.blade.php000064400000033264150075320660014647 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('delivery_man_Review')) @section('content')

{{$deliveryMan['f_name']. ' '. $deliveryMan['l_name']}}

Image Description

{{number_format($averageRatting, 2, '.', ' ')}}

{{translate('of')}} {{$reviews->count()?? 0}} {{translate('reviews')}}

  • {{'5'.' '.translate('star')}}
    {{$five}}
  • {{translate('4')}} {{translate('star')}}
    {{$four}}
  • {{translate('3')}} {{translate('star')}}
    {{$three}}
  • {{translate('2')}} {{translate('star')}}
    {{$two}}
  • {{translate('1')}} {{translate('star')}}
    {{$one}}
@foreach($reviews as $key=>$review) @endforeach
{{translate('SL')}} {{translate('order_ID')}} {{translate('reviewer')}} {{translate('review')}} {{translate('date')}}
{{$reviews->firstItem()+$key}} {{ $review['order_id'] }}
{{translate('image_description')}}
{{$review->customer['f_name']." ".$review->customer['l_name']}} {{$review->customer->email??""}}

{{$review['comment']}}

{{date('d M Y H:i:s',strtotime($review['updated_at']))}}
{{ $reviews->links() }}
@if(count($reviews)==0) @include('layouts.back-end._empty-state',['text'=>'no_review_found'],['image'=>'default']) @endif
@endsection vendor-views/delivery-man/pages-inline-menu.blade.php000064400000001351150075320660016670 0ustar00
vendor-views/delivery-man/update-view.blade.php000064400000033420150075320660015607 0ustar00@extends('layouts.back-end.app-seller') @section('title',translate('update_delivery_man')) @section('content')

{{translate('update_deliveryman')}}

@csrf
{{translate('general_Information')}}
* ( {{translate('ratio')}} 1:1 )
{{translate('delivery_man_image')}}
@foreach(json_decode($deliveryMan['identity_image'],true) as $img)
@endforeach
@endsection @push('script_2') @endpush vendor-views/delivery-man/list.blade.php000064400000024702150075320660014333 0ustar00@extends('layouts.back-end.app-seller') @section('title',translate('deliveryman_List')) @push('css_or_js') @endpush @section('content')

{{translate('deliveryman_List')}} {{ $deliveryMen->total() }}

@foreach($deliveryMen as $key=>$deliveryMan) @endforeach
{{translate('SL')}} {{translate('name')}} {{translate('contact_Info')}} {{translate('total_Orders')}} {{translate('rating')}} {{translate('status')}} {{translate('action')}}
{{$deliveryMen->firstitem()+$key}} {{ $deliveryMan->orders_count }} {{ isset($deliveryMan->rating[0]->average) ? number_format($deliveryMan->rating[0]->average, 2, '.', ' ') : 0 }}
@csrf
@csrf @method('delete')
@if(count($deliveryMen)==0) @include('layouts.back-end._empty-state',['text'=>'no_delivery_man_found'],['image'=>'default']) @endif
{!! $deliveryMen->links() !!}
@endsection @push('script_2') @endpush vendor-views/delivery-man/wallet/index.blade.php000064400000031376150075320660015764 0ustar00@extends('layouts.back-end.app-seller') @section('title',translate('earning_Statement')) @section('content')

{{translate('earning_Statement')}}

@include('vendor-views.delivery-man.pages-inline-menu')

{{translate('deliveryman_Wallet')}}

{{ $deliveryMan->wallet ? setCurrencySymbol(amount: usdToDefaultCurrency(amount:$deliveryMan->wallet->cash_in_hand), currencyCode: getCurrencyCode()) : setCurrencySymbol(amount: 0, currencyCode: getCurrencyCode()) }}

{{translate('cash_in_hand')}}
{{translate('collect_cash')}}

{{ $deliveryMan->wallet ? setCurrencySymbol(amount: usdToDefaultCurrency(amount:$deliveryMan->wallet->current_balance), currencyCode: getCurrencyCode()) : setCurrencySymbol(amount:0, currencyCode: getCurrencyCode())}}

{{translate('current_balance')}}

{{ $deliveryMan->wallet ? setCurrencySymbol(amount: usdToDefaultCurrency(amount:$deliveryMan->wallet->total_withdraw), currencyCode: getCurrencyCode()) : setCurrencySymbol(amount:0, currencyCode: getCurrencyCode())}}

{{translate('total_withdrawn')}}

{{$deliveryMan->wallet ? setCurrencySymbol(amount: usdToDefaultCurrency(amount:$deliveryMan->wallet->pending_withdraw), currencyCode: getCurrencyCode()) : setCurrencySymbol(amount:0, currencyCode: getCurrencyCode())}}

{{translate('pending_withdraw')}}

{{ empty($withdrawableBalance) ? setCurrencySymbol(amount: 0, currencyCode: getCurrencyCode()) : setCurrencySymbol(amount: usdToDefaultCurrency(amount: $withdrawableBalance), currencyCode: getCurrencyCode()) }}

{{translate('withdrawable_balance')}}
{{translate('delivery_man_account')}}

{{translate('status')}} :

{!! $deliveryMan->is_active == 1?'':'' !!}

{{translate('name')}} :
{{$deliveryMan->f_name}} {{$deliveryMan->l_name}}
{{translate('email')}} :
{{$deliveryMan->email}}
{{translate('phone')}} :
{{$deliveryMan->phone}}
{{translate('bank_info')}}

{{translate('bank_name')}} :

{{$deliveryMan->bank_name ?? translate('no_data_found')}}

{{translate('branch')}} :
{{$deliveryMan->branch ?? translate('no_data_found')}}
{{translate('holder_name')}} :
{{$deliveryMan->holder_name ?? translate('no_data_found')}}
{{translate('account_no')}} :
{{$deliveryMan->account_no ?? translate('no_data_found')}}
@endsection vendor-views/delivery-man/wallet/cash-collect.blade.php000064400000012034150075320660017204 0ustar00@extends('layouts.back-end.app-seller') @section('title',translate('cash_Withdraw')) @section('content')

{{translate('collect_Cash')}}

@csrf
{{translate('cash_Withdraw')}}
{{translate('total_Cash_In_Hand')}}:
{{ $deliveryMan->wallet ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $deliveryMan->wallet->cash_in_hand), currencyCode: getCurrencyCode()) : 0 }}
@if($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif
@foreach($transactions as $transaction) @endforeach
{{translate('SL')}} {{translate('name')}} {{translate('amount')}} {{translate('transaction_date')}}
{{ $loop->iteration }} {{ $deliveryMan->f_name. ' ' .$deliveryMan->l_name }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['credit']), currencyCode: getCurrencyCode()) }} {{ date_format( $transaction['created_at'], 'd-M-Y, h:i:s A') }}
{!! $transactions->links() !!}
@if(count($transactions)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
@endsection vendor-views/delivery-man/wallet/order-history.blade.php000064400000020132150075320660017453 0ustar00@extends('layouts.back-end.app-seller') @section('title',translate('earning_statement')) @push('css_or_js') @endpush @section('content')

{{translate('earning_Statement')}}

@include('vendor-views.delivery-man.pages-inline-menu')

{{ translate('order_list') }} {{ $orders->total() }}

@foreach($orders as $key=>$order) @endforeach
{{ translate('SL') }} {{ translate('order_no') }} {{ translate('current_status') }} {{ translate('history') }}
{{ $orders->firstItem()+$key }} @if($order['order_status']=='pending') {{$order['order_status']}} @elseif($order['order_status']=='processing' || $order['order_status']=='out_for_delivery') {{str_replace('_',' ',$order['order_status'] == 'processing' ? 'packaging':$order['order_status'])}} @elseif($order['order_status']=='confirmed') {{$order['order_status']}} @elseif($order['order_status']=='failed') {{translate('Failed_To_Deliver')}} @elseif($order['order_status']=='delivered') {{$order['order_status']}} @else {{$order['order_status']}} @endif
{{ $orders->links() }}
@if(count($orders)==0) @include('layouts.back-end._empty-state',['text'=>'no_order_found'],['image'=>'default']) @endif
@endsection @push('script_2') @endpush vendor-views/delivery-man/wallet/_order-status-history.blade.php000064400000007011150075320660021134 0ustar00 vendor-views/delivery-man/wallet/earning.blade.php000064400000024014150075320660016267 0ustar00@extends('layouts.back-end.app-seller') @section('title',translate('earning_statement')) @push('css_or_js') @endpush @section('content')

{{translate('earning_Statement')}}

@include('vendor-views.delivery-man.pages-inline-menu')

{{ translate('earning_statement') }}

{{ translate('total_earning') }}

{{ $totalEarn ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $totalEarn), currencyCode: getCurrencyCode()) : setCurrencySymbol(amount: 0, currencyCode: getCurrencyCode()) }}

{{ translate('withdrawable_balance') }}

{{ $withdrawableBalance? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $withdrawableBalance)) : setCurrencySymbol(amount: 0) }}

{{ translate('withdrawn') }}

{{ $deliveryMan->wallet? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $deliveryMan->wallet->total_withdraw), currencyCode: getCurrencyCode()) : setCurrencySymbol(amount: 0, currencyCode: getCurrencyCode()) }}

{{ translate('earning_history') }} {{ $orders->total() }}

@foreach($orders as $key=>$order) @endforeach
{{ translate('SL') }} {{ translate('order_no') }} {{ translate('earning') }} {{ translate('status') }}
{{ $orders->firstItem()+$key }}
{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order->deliveryman_charge), currencyCode: getCurrencyCode()) }}
@if($order['order_status']=='pending') {{$order['order_status']}} @elseif($order['order_status']=='processing' || $order['order_status']=='out_for_delivery') {{str_replace('_',' ',$order['order_status'] == 'processing' ? 'packaging':$order['order_status'])}} @elseif($order['order_status']=='confirmed') {{$order['order_status']}} @elseif($order['order_status']=='failed') {{$order['order_status'] == 'failed' ? 'Failed To Deliver' : ''}} @elseif($order['order_status']=='delivered') {{$order['order_status']}} @else {{$order['order_status']}} @endif
{{ $orders->links() }}
@if(count($orders)==0) @include('layouts.back-end._empty-state',['text'=>'no_order_found'],['image'=>'default']) @endif
@endsection vendor-views/delivery-man/emergency-contact/index.blade.php000064400000023017150075320660020074 0ustar00@extends('layouts.back-end.app-seller') @section('title',translate('emergency_Contact')) @section('content')

{{translate('emergency_Contact')}}

@csrf
{{translate('add_new_contact_information')}}
{{translate('contact_information_Table')}} {{ $contacts->count() }}
@foreach($contacts as $contact) @endforeach
{{translate('SL')}} {{translate('name')}} {{translate('phone')}} {{translate('status')}} {{translate('action')}}
{{ $loop->iteration }} {{ $contact['name'] }} {{$contact['country_code'].$contact['phone']}}
@csrf @method('patch')
@csrf @method('delete')
@if(count($contacts)==0) @include('layouts.back-end._empty-state',['text'=>'no_contact_found'],['image'=>'default']) @endif
{{ $contacts->links() }}
@endsection @push('script_2') @endpush vendor-views/delivery-man/emergency-contact/_update-emergency-contact.blade.php000064400000004643150075320660024017 0ustar00 vendor-views/reviews/index.blade.php000064400000035627150075320660013567 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('review_List')) @section('content')

{{translate('product_reviews')}}

{{ translate('review_table') }} {{ $reviews->total() }}
@foreach ($reviews as $key => $review) @if ($review->product) @endif @endforeach
{{ translate('SL') }} {{ translate('product') }} {{ translate('customer') }} {{ translate('rating') }} {{ translate('review') }} {{ translate('date') }} {{ translate('status') }}
{{ $reviews->firstItem()+$key }} {{ Str::limit($review->product['name'], 25) }} @if ($review->customer) {{ $review->customer->f_name . ' ' . $review->customer->l_name }} @else @endif
{{ $review->comment ? Str::limit($review->comment, 35) : translate('no_comment_found') }}

@if($review->attachment)
@foreach (json_decode($review->attachment) as $img) {{translate('image')}} @endforeach
@endif
{{ date('d M Y', strtotime($review->created_at)) }}
{!! $reviews->links() !!}
@if(count($reviews)==0) @include('layouts.back-end._empty-state',['text'=>'no_review_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush vendor-views/order/order-details.blade.php000064400000306355150075320660014644 0ustar00@extends('layouts.back-end.app-seller') @section('title',translate('order_Details')) @push('css_or_js') @endpush @section('content') @php($shippingAddress = $order['shipping_address_data'] ?? null)

{{translate('order_details')}}

{{translate('Order_ID')}} #{{$order['id']}}

{{date('d M, Y , h:i A',strtotime($order['created_at']))}}
@if (isset($order->verificationImages) && $order->verification_status ==1)
@endif @if (getWebConfig('map_api_status') == 1 && isset($shippingAddress->latitude) && isset($shippingAddress->longitude))
@endif {{translate('print__Invoice')}}
{{translate('status')}}: @if($order['order_status']=='pending') {{str_replace('_',' ', translate($order['order_status']) )}} @elseif($order['order_status']=='failed') {{str_replace('_',' ', translate('failed_To_Deliver'))}} @elseif($order['order_status']=='processing' || $order['order_status']=='out_for_delivery') {{str_replace('_',' ', $order['order_status'] == 'processing' ? translate('Packaging') : translate($order['order_status']))}} @elseif($order['order_status']=='delivered' || $order['order_status']=='confirmed') {{translate(str_replace('_',' ',$order['order_status']))}} @else {{translate(str_replace('_',' ',$order['order_status']))}} @endif
{{translate('payment_Method')}} : {{str_replace('_',' ', translate($order['payment_method']))}}
@if(isset($order['transaction_ref']) && $order->payment_method != 'cash_on_delivery' && $order->payment_method != 'pay_by_wallet' && !isset($order->offlinePayments))
{{translate('reference_Code')}} : {{translate(str_replace('_',' ',$order['transaction_ref']))}} {{ $order->payment_method == 'offline_payment' ? '('.$order->payment_by.')':'' }}
@endif
{{translate('payment_Status')}}: @if($order['payment_status']=='paid') {{translate('paid')}} @else {{translate('unpaid')}} @endif
@if(getWebConfig(name: 'order_verification')) {{translate('order_verification_code')}} : {{$order['verification_code']}} @endif
@if ($order->order_note !=null)

{{translate('order_Note')}}:

{{$order->order_note}}
@endif
@php($item_price=0) @php($total_price=0) @php($subtotal=0) @php($total=0) @php($shipping=0) @php($discount=0) @php($tax=0) @php($row=0) @foreach($order->details as $key=>$detail) product) { $productDetails = $detail->product; }else { $productDetails = json_decode($detail->product_details); } ?> @if($productDetails) @php($subtotal=$detail['price']*$detail['qty']+$detail['tax']-$detail['discount']) @php($item_price+=$detail['price']*$detail['qty']) @php($discount+=$detail['discount']) @php($tax+=$detail['tax']) @php($total+=$subtotal) @endif @php($sellerId=$detail->seller_id) @if(isset($productDetails->digital_product_type) && $productDetails->digital_product_type == 'ready_after_sell') @endif @endforeach
{{translate('SL')}} {{translate('item_details')}} {{translate('item_price')}} {{translate('tax')}} {{translate('item_discount')}} {{translate('total_price')}}
{{ ++$row }}
{{substr($productDetails->name, 0, 30)}}{{strlen($productDetails->name)>10?'...':''}}
{{translate('qty')}} : {{$detail['qty']}}
{{translate('unit_price')}} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail->price+( $detail->tax_model =='include' ? $detail->tax : 0)), currencyCode: getCurrencyCode())}} @if ($detail->tax_model =='include') ({{translate('tax_incl.')}}) @else ({{translate('tax').":".($productDetails->tax)}}{{$productDetails->tax_type ==="percent" ? '%' :''}}) @endif
@if ($detail->variant)
{{translate('variation')}} : {{$detail['variant']}}
@endif
@if(isset($productDetails->digital_product_type) && $productDetails->digital_product_type == 'ready_after_sell') @endif
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail['price']*$detail['qty']), currencyCode: getCurrencyCode())}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail['tax']), currencyCode: getCurrencyCode())}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail['discount']), currencyCode: getCurrencyCode())}}{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $subtotal), currencyCode: getCurrencyCode())}}
@php($shipping=$order['shipping_cost']) @php($coupon_discount=$order['discount_amount'])
{{translate('item_price')}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item_price), currencyCode: getCurrencyCode())}}
{{translate('item_discount')}}
- {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $discount), currencyCode: getCurrencyCode())}}
{{translate('sub_total')}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item_price-$discount), currencyCode: getCurrencyCode())}}
{{translate('coupon_discount')}}
{{(!in_array($order['coupon_code'], [0, NULL]) ? '('.translate('expense_bearer_').($order['coupon_discount_bearer']=='inhouse' ? 'admin' : ($order['coupon_discount_bearer'] == 'seller' ? 'vendor' : $order['coupon_discount_bearer'])).')': '' )}}
- {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $coupon_discount), currencyCode: getCurrencyCode())}}
{{translate('vat')}}/{{translate('tax')}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $tax), currencyCode: getCurrencyCode())}}
{{translate('delivery_fee')}}
{{($order['is_shipping_free'] ? '('.translate('expense_bearer_').($order['free_delivery_bearer'] == 'seller' ? 'vendor' : $order['free_delivery_bearer']).')': '' )}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $shipping), currencyCode: getCurrencyCode())}}
@php($delivery_fee_discount = 0) @if ($order['is_shipping_free']) @php($delivery_fee_discount = $shipping) @endif
{{translate('total')}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $total+$shipping-$coupon_discount -$delivery_fee_discount), currencyCode: getCurrencyCode())}}
@if($order->payment_method == 'offline_payment' && isset($order->offlinePayments))

{{translate('Payment_Information')}}

@foreach ($order->offlinePayments->payment_info as $key=>$item) @if (isset($item) && $key != 'method_id') @endif @endforeach
{{translate('payment_Method')}} : {{ translate($order['payment_method']) }}
{{translate($key)}} : {{ $item }}
@if(isset($order->payment_note) && $order->payment_method == 'offline_payment')

{{translate('payment_Note')}}:

{{ $order->payment_note }}

@endif
@endif

{{translate('order_&_Shipping_Info')}}

{{translate('payment_status')}}
{{ $order->payment_status=='paid' ? translate('paid'):translate('unpaid')}}
@if($physicalProduct)
    @if ($order->shipping_type == 'order_wise')
  • @endif @if ($shippingMethod=='sellerwise_shipping')
  • @if (isset($order->deliveryMan))
    Image
    {{ $order->deliveryMan?->f_name.' '.$order->deliveryMan?->l_name}}
    {{$order->deliveryMan?->phone }}
    @else
    {{translate('image')}}
    {{translate('no_delivery_man_assigned')}}
    @endif
  • @if (isset($order->deliveryMan))
  • @endif @endif
  • {{translate('image')}}
    {{$order->delivery_service_name ?? translate('not_assign_yet')}}
    {{translate('track_ID')}} : {{$order->third_party_delivery_tracking_id}}
@endif
@if(!$order->is_guest && $order->customer)

{{translate('customer_information')}}

{{translate('image')}}
{{$order->customer['f_name'].' '.$order->customer['l_name']}} {{$orderCount}} {{translate('orders')}} {{$order->customer['phone']}} {{$order->customer['email']}}
@endif @if($physicalProduct)
@if($shippingAddress)

{{translate('shipping_address')}}

@if($order['order_status'] != 'delivered') @endif
{{translate('name')}} : {{$shippingAddress->contact_person_name}} {{ $order->is_guest ? '('. translate('guest_customer') .')':''}}
{{translate('contact')}} : {{$shippingAddress->phone}}
@if ($order->is_guest && $shippingAddress->email)
{{translate('email')}} : {{$shippingAddress->email}}
@endif
{{translate('country')}} : {{$shippingAddress->country}}
{{translate('city')}} : {{$shippingAddress->city}}
{{translate('zip_code')}} : {{$shippingAddress->zip}}
{{$shippingAddress->address}}
@else
{{translate('no_shipping_address_found')}}
@endif
@endif
@php($billing=$order['billing_address_data']) @if($billing)

{{translate('billing_address')}}

@if($order['order_status'] !== 'delivered') @endif
{{translate('name')}} : {{$billing->contact_person_name}} {{ $order->is_guest ? '('. translate('guest_customer') .')':''}}
{{translate('contact')}} : {{$billing->phone}}
@if ($order->is_guest && $billing->email)
{{translate('email')}} : {{$billing->email}}
@endif
{{translate('country')}} : {{$billing->country}}
{{translate('city')}} : {{$billing->city}}
{{translate('zip_code')}} : {{$billing->zip}}
{{$billing->address}}
@else
{{translate('no_billing_address_found')}}
@endif

{{translate('shop_Information')}}

@if(!empty($order->seller->shop))
{{ $order->seller->shop->name }}
{{ $totalDelivered }} {{translate('orders_Served')}} {{ $order->seller->shop->contact }}
{{ $order->seller->shop->address }}
@else
{{translate('image_description')}}

{{ translate('no_shop_found').'!'}}

@endif
@if (isset($order->verificationImages)) @endif @if($order['order_status'] != 'delivered') @if($billing) @endif @endif customer['l_name']??""}}}"> @endsection @push('script') @if(getWebConfig('map_api_status') ==1 ) @endif @endpush vendor-views/order/list.blade.php000064400000046145150075320660013057 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('order_List')) @push('css_or_js') @endpush @section('content')

@if($status =='processing') {{translate('packaging')}} @elseif($status =='failed') {{translate('failed_to_Deliver')}} @elseif($status == 'all') {{translate('all')}} @else {{translate(str_replace('_',' ',$status))}} @endif {{translate('orders')}}

{{$orders->total()}}

{{translate('filter_order')}}

@if(request('delivery_man_id')) @endif @if (request('status')=='all' || request('status')=='delivered')
@endif
{{translate('reset')}}
{{translate('order_list')}} {{$orders->total()}}
@if($status == 'all') @else @endif @foreach($orders as $key=>$order) @if($status == 'all') @else @endif @endforeach
{{translate('SL')}} {{translate('order_ID')}} {{translate('order_Date')}} {{translate('customer_info')}} {{translate('total_amount')}}{{translate('order_Status')}} {{translate('payment_method')}} {{translate('action')}}
{{$orders->firstItem()+$key}} {{$order['id']}} {!! $order->order_type == 'POS' ? '(POS)' : '' !!}
{{date('d M Y',strtotime($order['created_at']))}}
{{date('H:i A',strtotime($order['created_at']))}}
@if($order->is_guest) {{translate('guest_customer')}} @elseif($order->customer_id == 0) {{translate('walking_customer')}} @else @if($order->customer) {{$order->customer['f_name'].' '.$order->customer['l_name']}} @if($order->customer['phone']) {{ $order->customer['phone'] }} @else {{ $order->customer['email'] }} @endif @else @endif @endif
@php($discount = 0) @if($order->coupon_discount_bearer == 'inhouse' && !in_array($order['coupon_code'], [0, NULL])) @php($discount = $order->discount_amount) @endif @php($free_shipping = 0) @if($order->is_shipping_free) @php($free_shipping = $order->shipping_cost) @endif {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order->order_amount+$discount+$free_shipping), currencyCode: getCurrencyCode())}}
@if($order->payment_status=='paid') {{translate('paid')}} @else {{translate('unpaid')}} @endif
@if($order->order_status=='pending') @elseif($order->order_status=='processing' || $order->order_status=='out_for_delivery') @elseif($order->order_status=='delivered' || $order->order_status=='confirmed') @elseif($order->order_status=='returned') @elseif($order['order_status']=='failed') {{translate('failed_to_deliver')}} @else @endif {{str_replace('_',' ',$order['payment_method'])}}
{{$orders->links()}}
@if(count($orders)==0) @include('layouts.back-end._empty-state',['text'=>'no_order_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush vendor-views/order/invoice.blade.php000064400000070115150075320660013532 0ustar00@php use Illuminate\Support\Facades\Session; $currencyCode = getCurrencyCode(type: 'default'); $direction = Session::get('direction'); $lang = getDefaultLanguage(); @endphp {{ translate('invoice')}}
{{ translate('Invoice')}}
{{ translate('invoice_Date')}} : {{date('M d ,Y',strtotime($order['created_at']))}}
{{getWebConfig('shop_address')}}
@if($invoiceSettings?->business_identity) @endif @if($order['seller_is']!='admin' && isset($order['seller']) && $order['seller']->gst != null)
{{translate('GST')}} : {{ $order['seller']->gst }}
@endif

@if ($order->order_type == 'default_type') @if($order->billing_address_data) @endif @else @endif
{{ translate('order')}} #{{ $order->id }}
{{ translate('date')}} : {{date('M d, Y',strtotime($order['created_at']))}}
{{translate('invoice_of')}} {{' ( '.$currencyCode.' )'}}
{{ webCurrencyConverter(amount: $order->order_amount) }}
{{ translate('payment')}}
{{ str_replace('_',' ',$order->payment_method) }}
@if(!empty($order->transaction_ref))
{{ translate('reference_ID')}}
{{ $order->transaction_ref }}
@endif @if($order->offlinePayments)
@foreach ($order->offlinePayments?->payment_info as $key=>$item) @if (isset($item) && $key != 'method_id')
{{ str_replace('_',' ',$key)}}
{{ $item }}
@endif @endforeach @endif
billing_address_data ?> {{ translate('billed_To')}} ({{translate($billingAddress->address_type)}})
{{$billingAddress->contact_person_name}}
{{$billingAddress->phone}}
{{$billingAddress->address}}
{{$billingAddress->city}} {{$billingAddress->zip}}
@if($order->shipping_address_data) shipping_address_data; ?> {{translate('shipping_To')}} ({{translate($shipping_address->address_type)}})
{{$shipping_address->contact_person_name}}
{{$shipping_address->phone}}
{{$shipping_address->address}}
{{ $shipping_address->city }} {{ $shipping_address->zip }}
@else {{ translate('customer_Info')}}
@if($order->is_guest)
{{translate('guest_User')}}
@else
{{ $order->customer !=null? $order->customer['f_name'].' '.$order->customer['l_name']:translate('name_not_found') }}
@endif @if (isset($order->customer) && $order->customer['id']!=0)
{{$order->customer !=null? $order->customer['email']: translate('email_not_found')}}
{{$order->customer !=null? $order->customer['phone']: translate('phone_not_found')}}
@endif
@endif
{{ translate('order')}} #{{ $order->id }}
{{ translate('date')}} : {{date('M d, Y',strtotime($order['created_at']))}}
{{translate('customer_Name')}}
{{ $order->customer !=null? $order->customer['f_name'].' '.$order->customer['l_name']:translate('Name_not_found')}}
{{translate('Phone')}}
{{$order->customer !=null? $order->customer['phone']: translate('phone_not_found')}}
{{translate('payment')}}
{{ translate($order->payment_status) }}
{{translate('invoice_of')}} {{' ( '.$currencyCode.' )'}}
{{ webCurrencyConverter(amount: $order->order_amount) }}
 
@foreach($order->details as $key=>$details) @php($productDetails = $details?->product ?? json_decode($details->product_details) ) @php( $itemPrice += $details['price'] * $details['qty']) shipping ? $details->shipping->cost : 0; $totalDiscountOnProduct += $details['discount']; $total += $subTotal; ?> @endforeach
{{ translate('item_Description')}} {{ translate('qty')}} {{ translate('unit_Price')}} {{ translate('total')}}
{{$productDetails->name}}
@if($details['variant'])
{{ translate('variation')}} : {{$details['variant']}} @endif
{{$details->qty}}
{{ webCurrencyConverter(amount: $details['price']) }}
{{ webCurrencyConverter(amount: $itemPrice) }}
@php($shipping=$order['shipping_cost'])
@if($order->order_type == 'default_type') @endif @if ($order->order_type != 'default_type') @endif
{{ translate('total_Item_Price')}} {{ webCurrencyConverter(amount: $itemPrice) }}
{{ translate('product_Discount')}} - {{ webCurrencyConverter(amount: $totalDiscountOnProduct) }}
{{ translate('sub_Total')}} {{ webCurrencyConverter(amount: $subTotal) }}
{{ translate('shipping')}} {{webCurrencyConverter(amount: $shipping - ($order->is_shipping_free ? $order->extra_discount : 0)) }}
{{ translate('coupon_Discount')}} - {{ webCurrencyConverter(amount: $order->discount_amount) }}
{{ translate('tax')}} {{ webCurrencyConverter(amount: $totalTax) }}
{{ translate('extra_Discount')}} - {{ webCurrencyConverter(amount: $extraDiscount) }}
{{ translate('total')}} {{ webCurrencyConverter(amount: $order->order_amount) }}
{{translate('thanks_for_the_purchase').'.'}}

@if($invoiceSettings?->terms_and_condition)
{{ translate('terms_&_Conditions') }}
{{$invoiceSettings?->terms_and_condition.'.'}}
@endif
vendor-views/refund/index.blade.php000064400000021733150075320660013357 0ustar00@php use Illuminate\Support\Str; @endphp @extends('layouts.back-end.app-seller') @section('title', translate('refund_list')) @section('content')

{{translate('refund_request_list')}} {{$refundList->total()}}

@foreach($refundList as $key=>$refund) @endforeach
{{translate('SL')}} {{translate('refund_id')}} {{translate('order_ID')}} {{translate('product_Info')}} {{translate('customer_Info')}} {{translate('total_Amount')}} {{translate('action')}}
{{$refundList->firstItem()+$key}} {{$refund['id']}} {{$refund->order_id}} @if ($refund->product!=null)
{{Str::limit($refund->product->name,35)}} {{ translate('qty') }} : {{ $refund->orderDetails->qty }}
@else {{translate('product_name_not_found')}} @endif
@if ($refund->customer !=null) @else {{translate('customer_not_found')}} @endif {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $refund->amount), currencyCode: getCurrencyCode())}}
{!! $refundList->links() !!}
@if(count($refundList)==0) @include('layouts.back-end._empty-state',['text'=>'no_refund_request_found'],['image'=>'default']) @endif
@endsection vendor-views/refund/details.blade.php000064400000056317150075320660013703 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('refund_details')) @push('css_or_js') @endpush @section('content')

{{translate('refund_details')}}

@if ($refund['change_by'] !='admin')
{{translate('warning')}} @if($refund['status'] != 'pending' && ($refund['approved_count']<2 || $refund['denied_count']<2)) @if($refund['status'] == 'approved' && $refund['approved_count']<2 ) {{translate('you_have_already_denied_refund_status_once').'.'}} @elseif($refund['status'] == 'rejected' && $refund['denied_count']<2) {{translate('you_have_already_approved_refund_status_once').'.'}} @endif @elseif($refund['approved_count']>=2 || $refund['denied_count']>=2) {{translate('you_have_already_').$refund['status'].translate('_refund_status_twice').'.'}} @else {{translate('you_can_change_refund_status_maximum_2_times').'.'}} @endif
@endif

{{translate('refund_summary')}}

  • {{translate('refund_id')}} : {{$refund->id}}
  • {{translate('refund_requested_date')}} : {{date('d M Y, h:s:A',strtotime($refund['created_at']))}}
  • {{translate('refund_status')}} : @if ($refund['status'] == 'pending') {{translate($refund['status'])}} @elseif($refund['status'] == 'approved') {{translate($refund['status'])}} @elseif($refund['status'] == 'refunded') {{translate($refund['status'])}} @elseif($refund['status'] == 'rejected') {{translate($refund['status'])}} @endif
  • {{translate('payment_method')}} : {{str_replace('_',' ',$order->payment_method)}}
  • {{translate('order_details')}} : {{translate('view_details')}}

{{translate('product_details')}}

@if ($refund->change_by !='admin') @if($refund['status'] != 'rejected' && $refund['denied_count'] < 2) @endif @if($refund['status'] != 'approved' && $refund['approved_count'] < 2) @endif @endif

@if ($refund->product!=null) {{$refund->product->name}} @else {{translate('product_name_not_found')}} @endif

@if ($refund->orderDetails->variant)
{{translate('variation')}} : {{$refund->orderDetails->variant}}
@endif @if($refund->orderDetails->digital_file_after_sell) @php($downloadPath =dynamicStorage(path: 'storage/app/public/product/digital-product/'.$refund->orderDetails->digital_file_after_sell)) {{translate('download')}} @endif
  • {{translate('QTY')}} : {{$refund->orderDetails->qty}}
  • {{translate('total_price')}} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $refund->orderDetails->price*$refund->orderDetails->qty), currencyCode: getCurrencyCode())}}
  • {{translate('total_discount')}} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $refund->orderDetails->discount), currencyCode: getCurrencyCode())}}
  • {{translate('coupon_discount')}} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $couponDiscount), currencyCode: getCurrencyCode())}}
  • {{translate('total_tax')}} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $refund->orderDetails->tax), currencyCode: getCurrencyCode())}}
  • {{translate('subtotal')}} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $subtotal), currencyCode: getCurrencyCode())}}
  • {{translate('refundable_amount')}} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $refundAmount), currencyCode: getCurrencyCode())}}

{{translate('refund_reason_by_customer')}}

{{$refund->refund_reason}}

@if ($refund->images) @endif

{{translate('deliveryman_info')}}

@if($order->deliveryMan)
{{translate('name')}}: {{$order->deliveryMan->f_name . ' ' .$order->deliveryMan->l_name}}
{{translate('email_address')}}: {{$order->deliveryMan?->email }}
{{translate('phone_number')}} : {{$order->deliveryMan?->phone }}
@else
{{translate('image')}}
{{translate('no_delivery_man_assigned')}}
@endif

{{translate('refund_status_changed_log')}}

@foreach ($refund->refundStatus as $key=>$status) @endforeach
{{translate('SL')}} {{translate('changed_by')}} {{translate('Date')}} {{translate('approved_/_rejected_note')}} {{translate('status')}}
{{$key+1}} {{$status->change_by == 'seller' ? 'vendor' : $status->change_by}} {{date('d M Y, h:s:A',strtotime($refund['created_at']))}}
{{$status->message}}
{{translate($status->status)}}
@if(count($refund->refundStatus)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
@if ($refund['change_by'] !='admin') @if($refund['denied_count'] < 2) @endif @if($refund['approved_count'] < 2) @endif @endif @endsection @push('script_2') @endpush vendor-views/coupon/index.blade.php000064400000053714150075320660013403 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('coupon_Add')) @section('content')

{{translate('coupon_setup')}}

@csrf
{{translate('generate_code')}}
{{translate('coupon_list')}} {{ $coupons->total() }}
@foreach($coupons as $k=>$coupon) @endforeach
{{translate('SL')}} {{translate('coupon')}} {{translate('coupon_type')}} {{translate('duration')}} {{translate('user_limit')}} {{translate('discount_bearer')}} {{translate('status')}} {{translate('action')}}
{{$coupons->firstItem() + $k}}
{{substr($coupon['title'],0,20)}}
{{translate('code')}}: {{$coupon['code']}}
{{translate(str_replace('_',' ',$coupon['coupon_type']))}}
{{date('d M, y',strtotime($coupon['start_date']))}} - {{date('d M, y',strtotime($coupon['expire_date']))}}
{{translate('limit')}}: {{ $coupon['limit'] }}, {{translate('used')}}: {{ $coupon['order_count'] }} {{ translate($coupon['coupon_bearer'] == 'inhouse' ? 'admin':$coupon['coupon_bearer']) }} @if($coupon->added_by=='seller' || ($coupon->added_by=='admin' && $coupon->coupon_bearer=='seller' && $coupon->seller_id==auth('seller')->id()))
@else @endif
@if($coupon->added_by=='seller' || ($coupon->added_by=='admin' && $coupon->coupon_bearer=='seller' && $coupon->seller_id==auth('seller')->id()))
@csrf @method('delete')
@else @endif
{{$coupons->links()}}
@if(count($coupons)==0) @include('layouts.back-end._empty-state',['text'=>'no_coupon_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush vendor-views/coupon/update-view.blade.php000064400000022432150075320660014517 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('coupon_Edit')) @section('content')

{{translate('coupon_update')}}

@csrf
{{translate('generate_code')}}
@endsection @push('script') @endpush vendor-views/coupon/quick-view.blade.php000064400000006062150075320660014352 0ustar00@php use Carbon\Carbon; @endphp
{{ $coupon->title }}
{{translate('code')}} : {{ $coupon->code }}
{{translate(str_replace('_',' ',$coupon->coupon_type))}}
{{translate('minimum_purchase')}} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $coupon->min_purchase), currencyCode: getCurrencyCode(type: 'default'))}}
@if($coupon->coupon_type != 'free_delivery' && $coupon->discount_type == 'percentage')
{{translate('maximum_discount')}} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$coupon->max_discount), currencyCode: getCurrencyCode(type: 'default'))}}
@endif
{{translate('start_date')}} : {{ Carbon::parse($coupon->start_date)->format('dS M Y') }}
{{translate('expire_date')}} : {{ Carbon::parse($coupon->expire_date)->format('dS M Y') }}
{{translate('discount_bearer')}} : @if($coupon->coupon_bearer == 'inhouse') {{ translate('admin') }} @elseif($coupon->coupon_bearer == 'seller') {{ translate('vendor') }} @endif
@if($coupon->coupon_type == 'free_delivery') {{translate('free_delivery')}} @else

{{$coupon->discount_type=='amount'?setCurrencySymbol(amount: usdToDefaultCurrency(amount:$coupon->discount), currencyCode: getCurrencyCode(type: 'default')):$coupon->discount.'%'}}

{{translate('off')}} @endif
vendor-views/shipping-method/index.blade.php000064400000046677150075320660015211 0ustar00@php use Illuminate\Support\Facades\Session; @endphp @extends('layouts.back-end.app-seller') @section('title', translate('add_Shipping')) @section('content') @php($direction = Session::get('direction'))

{{translate('shipping_method')}}

{{translate('delivery_restriction')}}
{{translate('shipping')}}

{{translate('note').' '.':'}} {{translate('please_make_sure_all_the product`s_delivery_charges_are_up_to_date').'.'}}

{{translate('add_order_wise_shipping')}}
@csrf
{{translate('order_wise_shipping_method')}} {{ $shippingMethods->count() }}
@foreach($shippingMethods as $k=>$method) @endforeach
{{translate('SL')}} {{translate('title')}} {{translate('duration')}} {{translate('cost')}} {{translate('status')}} {{translate('action')}}
{{$shippingMethods->firstItem()+$k}} {{$method['title']}} {{$method['duration']}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $method['cost']), currencyCode: getCurrencyCode(type: 'default'))}}
@csrf
{!! $shippingMethods->links() !!}
@if(count($shippingMethods)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
{{translate('category_wise_shipping_cost')}}
@csrf @php($serial = 0) @foreach ($allCategoryShippingCost as $key=>$item) @if($item->category) @endif @endforeach
{{translate('SL')}} {{translate('category_name')}} {{translate('cost_per_product')}} {{translate('multiply_with_QTY')}}
{{++$serial}} {{$item->category->name}}
@endsection @push('script') @endpush vendor-views/shipping-method/update-view.blade.php000064400000005535150075320660016320 0ustar00@extends('layouts.back-end.app-seller') @section('title', translate('edit_Shipping')) @section('content')

{{translate('shipping_method_update')}}

{{translate('shipping_method_update')}}
@csrf
@endsection update/update-software.blade.php000064400000006147150075320660012733 0ustar00@extends('layouts.blank') @section('content')

{{ "6valley Software Update" }}

@csrf
@endsection file-exports/delivery-man-order-history.blade.php000064400000006304150075320660016157 0ustar00 @if ($data['type'] == 'earn') @else @endif @if ($data['type'] != 'earn') @endif @if ($data['type'] == 'earn') @endif @if ($data['type'] == 'earn') @endif @foreach ($data['orders'] as $key=>$item) @if ($data['type'] != 'earn') @endif @if ($data['type'] == 'earn') @endif @if ($data['type'] == 'earn') @else @endif @if ($data['type'] == 'earn') @endif @endforeach
{{translate($data['type'] == 'earn' ? 'delivery_Man_Earnings' : 'delivery_Man_Order_List')}}
{{ translate('delivery_Man_Information').' '.'-' }} {{translate('name').' '.'-'.' '.$data['delivery_man']['f_name'].' '.$data['delivery_man']['l_name']}}
{{translate('rating').' '.'-'.' '.(isset($data['delivery_man']?->rating[0]?->average) ? number_format($data['delivery_man']?->rating[0]?->average, 1) : 0) }}
{{translate('total_Order').' '.'-'.' '.count($data['orders'])}}
{{translate('earning_Analytics')}}- {{translate('total_Earning').' '.'-'.' '.setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_earn'] ?? 0)) }} {{translate('withdrawable_Balance').' '.'-'.' '. setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['withdrawable_balance'] ?? 0)) }} {{translate('already_Withdrawn').' '.'-'.' '. setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['delivery_man']?->wallet?->total_withdraw ?? 0)) }}{{translate('search_Criteria').' '.'-'}} {{translate('search_Bar_Content').' '.'-'.' '.!empty($data['search']) ? $data['search'] : 'N/A'}}
{{translate('SL')}} {{translate('order_ID')}} {{translate('order_Date')}} {{translate('total_Item')}} {{translate('earnings')}} {{translate($data['type'] == 'earn' ? 'earning_status' : 'payment_status')}} {{translate('payment_method')}} {{translate('order_Status')}}
{{++$key}} {{$item->id}} {{ date_format( $item->created_at, 'd M ,Y, h:i:s A') }} {{$item->total_qty}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item?->deliveryman_charge ?? 0)) }} {{translate($item->order_status == 'delivered' && $item->payment_status == 'paid' ? translate('received') : translate('not_received'))}} {{translate($item->payment_status)}} {{translate($item->payment_method)}} {{translate($item->order_status)}}
file-exports/admin-earning-report.blade.php000064400000005317150075320660015000 0ustar00 @foreach ($data['inhouseEarn'] as $key=>$item) @php($inhouseEarning = $item-$data['totalTax'][$key]))) @endforeach
{{translate('admin_Earning_Report')}}
{{ translate('filter_Criteria') .' '.'-'}} {{translate('date_type').' '.'-'.' '.translate($data['dateType'])}}
@if($data['from'] && $data['to']) {{translate('from').' '.'-'.' '.date('d M, Y',strtotime($data['from']))}}
{{translate('to').' '.'-'.' '.date('d M, Y',strtotime($data['to']))}}
@endif
{{translate('SL')}} {{translate('duration')}} {{translate('in-House_Earning')}} {{translate('commission_Earning')}} {{translate('earn_From_Shipping')}} {{translate('deliveryMan_Incentive')}} {{translate('discount_Given')}} {{translate('VAT/TAX')}} {{translate('refund_Given')}} {{translate('total_Earning')}}
{{$loop->iteration++}} {{$key}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $inhouseEarning), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['adminCommissionEarn'][$key]), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['shippingEarn'][$key]), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['deliverymanIncentive'][$key]), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['discountGiven'][$key]), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['totalTax'][$key]), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['refundGiven'][$key]), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $inhouseEarning+$data['adminCommissionEarn'][$key]+$data['totalTax'][$key]+$data['shippingEarn'][$key]-$data['discountGiven'][$key]-$data['refundGiven'][$key] - $data['deliverymanIncentive'][$key]), currencyCode: getCurrencyCode()) }}
file-exports/product-wishlisted-report.blade.php000064400000002647150075320660016127 0ustar00 @foreach ($data['products'] as $key=>$item) @endforeach
{{translate('product_Wishlisted_Report_List')}}
{{ translate('filter_Criteria').' '.'-' }} {{translate('search_Bar_Content')}} - {{ $data['search'] ?? 'N/A'}}
{{translate('store')}} - {{ucwords($data['seller'] != 'all' && $data['seller'] !='inhouse' ? $data['seller']?->shop->name : translate($data['seller'] ?? 'all' ))}}
{{translate('wishlist_Sort_By').' '.'-'.' '.translate($data['sort'] == 'ASC' ? 'low_to_high' : 'high_to_low')}}
{{translate('SL')}} {{translate('product_Name')}} {{translate('Date')}} {{translate('total_In_Wishlist ')}}
{{++$key}} {{$item['name']}} {{ date('d M, Y', $item['created_at'] ? strtotime($item['created_at']) : null) }} {{ $item->wish_list_count }}
file-exports/brand-list.blade.php000064400000003320150075320660013005 0ustar00 @foreach ($data['brands'] as $key=>$item) @endforeach
{{translate('brand_List')}}
{{ translate('brand_Analytics').' '.'-' }} {{translate('total_Brand').' '.'-'.' '.count($data['brands'])}}
{{translate('inactive_Brand').' '.'-'.' '.$data['active']}}
{{translate('active_Brand').' '.'-'.' '.$data['inactive']}}
{{translate('search_Criteria')}}- {{translate('search_Bar_Content').' '.'-'.' '.$data['search'] ?? 'N/A'}}
{{translate('SL')}} {{translate('brand_Logo')}} {{translate('name')}} {{translate('total_Product')}} {{translate('total_Order')}} {{translate('status')}}
{{++$key}} {{$item['defaultName']}} {{$item->brand_all_products_count}} {{$item['brandAllProducts']->sum('order_details_count')}} {{translate($item->status == 1 ? 'active' : 'inactive')}}
file-exports/vendor-earning-report.blade.php000064400000006271150075320660015205 0ustar00 @foreach ($data['vendorEarnTable'] as $key=>$item) @php($shippingEarnTable = $data['shipping_earn_table'][$key]['amount'] ?? 0) @php($deliverymanIncentiveTable =$data['deliverymanIncentiveTable'][$key]['amount'] ?? 0) @php($commissionGivenTable = $data['commissionGivenTable'][$key]['amount'] ?? 0) @php($discountGivenTable = $data['discountGivenTable'][$key]['amount'] ?? 0) @php($discountGivenBearerAdminTable = $data['discountGivenBearerAdminTable'][$key]['amount'] ?? 0) @php($totalTaxTable = $data['totalTaxTable'][$key]['amount'] ?? 0) @php($totalRefundTable = $data['totalRefundTable'][$key]['amount'] ?? 0) @php($totalEarnFromOrder=$item['amount']+$discountGivenTable-$totalTaxTable) @endforeach
{{translate('vendor_Earning_Report')}}
{{ translate('filter_Criteria') .' '.'-'}} {{translate('date_type').' '.'-'.' '.translate($data['dateType'])}}
@if($data['from'] && $data['to']) {{translate('from').' '.'-'.' '.date('d M, Y',strtotime($data['from']))}}
{{translate('to').' '.'-'.' '.date('d M, Y',strtotime($data['to']))}}
@endif
{{translate('SL')}} {{translate('vendor_Info')}} {{translate('earn_From_Order')}} {{translate('earn_From_Shipping')}} {{translate('deliveryman_Incentive')}} {{translate('commission_Given')}} {{translate('discount_Given')}} {{translate('tax_Collected')}} {{translate('refund_Given')}} {{translate('total_Earning')}}
{{$loop->iteration++}} {{ $item['name'] }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $totalEarnFromOrder), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $shippingEarnTable), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $deliverymanIncentiveTable), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $commissionGivenTable), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $discountGivenTable), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $totalTaxTable), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $totalRefundTable), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $totalEarnFromOrder+$shippingEarnTable+$totalTaxTable-$discountGivenTable-$totalRefundTable-$commissionGivenTable-$deliverymanIncentiveTable), currencyCode: getCurrencyCode()) }}
file-exports/employee-role-list.blade.php000064400000003717150075320660014507 0ustar00 @foreach ($data['roles'] as $key=>$item) @endforeach
{{translate('employee_Role_List')}}
{{ translate('employee_Role_Analytics') .' '.'-'}} {{translate('search_Bar_Content')}} - {{!empty($data['searchValue']) ? $data['searchValue'] : 'N/A'}}
{{translate('active_Employee_Role').' '.'-'.' '.$data['active']}}
{{translate('inactive_Employee_Role').' '.'-'.' '.$data['inActive']}}
{{translate('SL')}} {{translate('role_Name')}} {{translate('Modules')}} {{translate('created_At')}} {{translate('status')}}
{{++$key}} {{ucwords($item['name'])}} @if($item['module_access'] != null) @foreach((array)json_decode($item['module_access']) as $module) @if($module == 'report') {{translate('reports_and_analytics').(!$loop->last ? ',': '')}}
@elseif($module == 'user_section') {{translate('user_management').(!$loop->last ? ',': '')}}
@elseif($module == 'support_section') {{translate('Help_&_Support_Section').(!$loop->last ? ',': '')}}
@else {{translate(str_replace('_',' ', $module)).(!$loop->last ? ',': '')}}
@endif @endforeach @endif
{{date('d M, Y h:i A',strtotime($item->created_at))}} {{translate($item['status'] ==1 ? 'active' : 'inactive')}}
file-exports/expense-transaction-report-export.blade.php000064400000006074150075320660017601 0ustar00 @foreach ($data['transactions'] as $key=>$transaction) @endforeach
{{translate('expanse_Transaction_Report_List')}}
{{ translate('filter_Criteria') .' '.'-'}} {{translate('search_Bar_Content').' '.'-'.' '. ($data['search'] ?? 'N/A')}} @if(isset($data['vendor']))
{{translate('store_Name')}} - {{$data['vendor']?->shop?->name}} @endif
{{translate('date_type').' '.'-'.' '.translate($data['dateType'])}}
@if($data['from'] && $data['to']) {{translate('from').' '.'-'.' '.date('d M, Y',strtotime($data['from']))}}
{{translate('to').' '.'-'.' '.date('d M, Y',strtotime($data['to']))}}
@endif
{{translate('SL')}} {{translate('XID')}} {{translate('transaction_Date')}} {{translate('order_ID')}} {{translate('expense_Amount')}} {{translate('expense_Type')}}
{{++$key}} {{ $transaction->orderTransaction->transaction_id }} {{ date_format($transaction?->orderTransaction->updated_at, 'd F Y h:i:s a') }} {{$transaction->id}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: ($transaction->coupon_discount_bearer == 'inhouse'? $transaction->discount_amount:0) + ($transaction->free_delivery_bearer=='admin'?$transaction->extra_discount:(($transaction->coupon_discount_bearer == 'seller'?$transaction->discount_amount:0) + ($transaction->free_delivery_bearer=='seller'?$transaction->extra_discount:0)))), currencyCode: getCurrencyCode()) }} @php($transactionCouponType = ($transaction->coupon_discount_bearer == 'inhouse'?(isset($transaction->coupon->coupon_type) ? ($transaction->coupon->coupon_type == 'free_delivery' ? translate('free_Delivery_Promotion'): (ucwords(str_replace('_', ' ', $transaction->coupon->coupon_type))) ): ''):($transaction->coupon_discount_bearer == 'seller'?(isset($transaction->coupon->coupon_type) ? ($transaction->coupon->coupon_type == 'free_delivery' ? 'Free Delivery Promotion':ucwords(str_replace('_', ' ', $transaction->coupon->coupon_type))) : ''):'')) ) @php($extraDiscountType = ($transaction->free_delivery_bearer == 'admin' ? ucwords(str_replace('_', ' ', $transaction->extra_discount_type)):($transaction->free_delivery_bearer == 'seller' ? ucwords(str_replace('_', ' ', $transaction->extra_discount_type)):'' ) )) @if(!empty($transactionCouponType)) {{$transactionCouponType}} @endif @if(!empty($extraDiscountType))
{{$extraDiscountType}} @endif
file-exports/vendor-list.blade.php000064400000004260150075320660013220 0ustar00 @foreach ($data['vendors'] as $key=>$item) @endforeach
{{translate('vendor_List')}}
{{ translate('vendor_Analytics') }} - {{translate('total_Vendor')}} - {{count($data['vendors'])}}
{{translate('active_Vendors ')}} - {{$data['active']}}
{{translate('inactive_Vendors ')}} - {{$data['inactive']}}
{{translate('search_Criteria')}}- {{translate('search_Bar_Content')}} - {{!empty($data['search']) ? $data['search'] : 'N/A'}}
{{translate('SL')}} {{translate('store_Logo')}} {{translate('store_Name')}} {{translate('vendor_Name')}} {{translate('phone')}} {{translate('email')}} {{translate('joined_At')}} {{translate('total_Products')}} {{translate('total_Order')}} {{translate('status')}}
{{++$key}} {{ucwords($item?->shop->name)}} {{ucwords($item->f_name.' '.$item->l_name)}} {{$item?->phone ?? translate('not_found')}} {{ucwords($item->email)}} {{date('d M, Y h:i A',strtotime($item->created_at))}} {{$item->product_count}} {{$item->orders_count}} {{translate($item->status == 'approved' ? 'active' : 'inactive')}}
file-exports/delivery-man-list.blade.php000064400000004667150075320660014332 0ustar00 @foreach ($data['delivery_men'] as $key=>$item) @endforeach
{{translate('delivery_Man_List')}}
{{ translate('delivery_Man_Analytics') .' '.'-'}} @if(isset($data['vendor'])) {{translate('store_Name')}} - {{$data['vendor']?->shop?->name}}
@endif {{translate('total_Delivery_Man').' '.'-'.' '.count($data['delivery_men'])}}
{{translate('active_Delivery_Man').' '.'-'.' '.$data['active']}}
{{translate('inactive_Delivery_man').' '.'-'.' '.$data['inactive']}}
{{translate('search_Criteria')}}- {{translate('search_Bar_Content').' '.'-'.' '.!empty($data['search']) ? $data['search'] : 'N/A'}}
{{translate('SL')}} {{translate('delivery_Man_Image')}} {{translate('first_Name')}} {{translate('last_Name')}} {{translate('phone')}} {{translate('email')}} {{translate('identity_Number')}} {{translate('total_Order')}} {{translate('rating')}} {{translate('status')}}
{{++$key}} {{ucwords($item->f_name)}} {{ucwords($item->l_name)}} {{$item->phone}} {{ucwords($item->email)}} {{ucwords($item?->identity_number)}} {{$item->orders_count}} {{isset($item->rating[0]->average) ? number_format($item->rating[0]->average, 1, '.', ' ') : 0 }} {{translate($item->is_active == 1 ? 'active' : 'inactive')}}
file-exports/delivery-man-withdraw-request.blade.php000064400000003465150075320660016671 0ustar00 @foreach ($data['withdraw_request'] as $key=>$item) @endforeach
{{translate('delivery_Man_Withdraw_Request_List')}}
{{ translate('withdraw_Request_Analytics') .' '.'-'}} {{translate('search_Bar_Content').' '.'-'.' '. ($data['searchValue'] ?? 'N/A')}}
{{translate('total__Request').' '.'-'.' '.count($data['withdraw_request'])}}
{{translate('pending_Request').' '.'-'.' '.$data['pending_request']}}
{{translate('approved_Request').' '.'-'.' '.$data['approved_request']}}
{{translate('denied_Request').' '.'-'.' '.$data['denied_request']}}
{{translate('filter_Criteria')}}- {{ucwords($data['filter'] ?? 'all')}}
{{translate('SL')}} {{translate('first_Name')}} {{translate('last_Name')}} {{translate('request_Time')}} {{translate('amount')}} {{translate('status')}}
{{++$key}} {{ ucwords($item?->deliveryMan?->f_name ?? translate('not_found')) }} {{ ucwords($item?->deliveryMan?->l_name ?? translate('not_found')) }} {{ date_format( $item->created_at, 'd M ,Y, h:i:s A') }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item['amount'] ?? 0))}} {{ucwords($item->approved==0 ? 'pending' : ($item->approved==1 ? 'approved' : 'denied'))}}
file-exports/order-report-export.blade.php000064400000005123150075320660014714 0ustar00 @foreach ($data['orders'] as $key=>$item) @endforeach
{{translate('order_Report_List')}}
{{ translate('filter_Criteria') .' '.'-'}} {{translate('search_Bar_Content').' '.'-'.' '. ($data['search'] ?? 'N/A')}}
{{translate('store')}} - {{ucwords($data['vendor'] != 'all' && $data['vendor'] !='inhouse' ? $data['vendor']?->shop->name : ( $data['vendor'] ?? 'all' ))}}
{{translate('date_type').' '.'-'.' '.translate($data['dateType'])}}
@if($data['from'] && $data['to']) {{translate('from').' '.'-'.' '.date('d M, Y',strtotime($data['from']))}}
{{translate('to').' '.'-'.' '.date('d M, Y',strtotime($data['to']))}}
@endif
{{translate('SL')}} {{translate('order_ID')}} {{translate('total_Amount')}} {{translate('product_Discount')}} {{translate('coupon_Discount')}} {{translate('shipping_Charge')}} {{translate('VAT/TAX')}} {{translate('commission')}} {{translate('deliveryman_incentive')}} {{translate('status')}}
{{++$key}} {{$item['id']}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item->order_amount ?? 0)) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount:$item->details_sum_discount ?? 0)) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount:$item->discount_amount ?? 0)) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount:$item->shipping_cost - ($item->extra_discount_type == 'free_shipping_over_order_amount' ? $item->extra_discount : 0))) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount:$item->details_sum_tax ?? 0)) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount:$item->admin_commission ?? 0)) }} {{ ($item->delivery_type=='self_delivery' && $item->delivery_man_id) ? setCurrencySymbol(amount: usdToDefaultCurrency(amount:$item->deliveryman_charge ?? 0)) : setCurrencySymbol(amount: usdToDefaultCurrency(amount: 0)) }} {{translate($item['order_status'])}}
file-exports/category-list.blade.php000064400000004524150075320660013543 0ustar00 @if($data['title'] == 'category') @endif @if($data['title'] == 'sub_sub_category') @endif @if($data['title'] == 'sub_category' || $data['title'] == 'sub_sub_category') @endif @if($data['title'] == 'category') @endif @foreach ($data['categories'] as $key=>$item) @if($data['title'] == 'category') @endif @if($data['title'] == 'sub_sub_category') @endif @if($data['title'] == 'sub_category' || $data['title'] == 'sub_sub_category') @endif @if($data['title'] == 'category') @endif @endforeach
{{translate($data['title'].'_'.'List')}}
{{ translate($data['title'].'_'.'Analytics').' '.'-' }} {{translate('total'.'_'.$data['title']).' '.'-'.' '.count($data['categories'])}} @if($data['title'] == 'category')
{{translate('inactive'.'_'.$data['title']).' '.'-'.' '.$data['active']}}
{{translate('active'.'_'.$data['title']).' '.'-'.' '.$data['inactive']}} @endif
{{translate('search_Criteria')}}- {{translate('search_Bar_Content').' '.'-'.' '.$data['search'] ?? 'N/A'}}
{{translate('ID')}} {{translate('category_Image')}} {{translate($data['title'].'_'.'Name')}} {{translate('sub_Category_Name')}} {{translate('category_Name')}} {{translate('priority')}} {{translate('home_category_status')}}
{{$item['id']}} {{$item['defaultName']}} {{$item?->parent?->parent->defaultName ??translate('sub_category_not_found') }} {{$item?->parent?->defaultName ?? translate('category_not_found')}} {{$item->priority}} {{translate($item->home_status == 1 ? 'active' : 'inactive')}}
file-exports/vendor-order-list.blade.php000064400000004007150075320660014330 0ustar00 @foreach ($data['orders'] as $key=>$order) @endforeach
{{translate('vendor_Order_List')}}
{{ translate('vendor_Info').' '.'-' }} {{translate('Shop_Name').' '.'-'.' '.ucwords($data['shop']->name)}}
{{translate('shop_Phone').' '.'-'.' '.$data['shop']->contact ?? translate('data_not_found')}}
{{translate('shop_Address').' '.'-'.' '.$data['shop']->address ?? translate('data_not_found')}}
{{translate('total_Order').' '.'-'.' '.count($data['orders']) }}
{{translate('order_Status')}} @foreach ($data['statusArray'] as $key=>$value) {{translate($key != 'failed' ? $key : 'failed_to_deliver').' '.'-'.' '.$value}} @endforeach
{{translate('SL')}} {{translate('Order_ID')}} {{translate('Order_Date')}} {{translate('customer_Name')}} {{translate('Total_Amount')}} {{translate('Payment_Status')}} {{translate('Order_Status')}}
{{++$key}} {{$order->id}} {{date('d M, Y h:i A',strtotime($order->created_at))}} {{ucwords($order->is_guest == 0 ? (($order?->customer?->f_name ?? translate('not_found')) .' '. $order?->customer?->l_name) : translate('guest_customer'))}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order['order_amount'] ?? 0), currencyCode: getCurrencyCode())}} {{translate($order->payment_status)}} {{translate($order->order_status)}}
file-exports/vendor-report.blade.php000064400000005054150075320660013562 0ustar00 @if($data['vendor'] == 'all') @endif @foreach ($data['orders'] as $key=>$order) @if($data['vendor'] == 'all') @endif @endforeach
{{translate('vendor_Report')}}
{{ translate('filter_Criteria') .' '.'-'}} {{translate('search_Bar_Content').' '.'-'.' '. $data['search'] ?? 'N/A'}}
{{translate('store').' '.'-'.' '.ucwords($data['vendor'] != 'all' ? $data['vendor']?->shop->name : translate('all') )}}
{{translate('date_type').' '.'-'.' '.translate($data['dateType'])}}
@if($data['from'] && $data['to']) {{translate('from').' '.'-'.' '.date('d M, Y',strtotime($data['from']))}}
{{translate('to').' '.'-'.' '.date('d M, Y',strtotime($data['to']))}}
@endif
{{translate('SL')}} {{translate('vendor_Info')}} {{translate('total_Order')}} {{translate('commission')}} {{translate('refund_Rate')}}
{{++$key}} {{$order?->seller?->shop?->name ?? translate('data_not_found')}}
{{$order->seller?->f_name.' '.$order->seller?->l_name }}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order->total_order_amount), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order->total_admin_commission), currencyCode: getCurrencyCode()) }} $refund['total_refund_amount'] ); } } if (array_key_exists($order->seller_id, $array)) { echo number_format(($array[$order->seller_id] / $order->total_order_amount) * 100, 2) . '%'; } else { echo '0%'; } ?>
file-exports/customer-transactions.blade.php000064400000006452150075320660015326 0ustar00 @foreach ($data['transactions'] as $key=>$item) @if ($data['type'] == 'wallet') @elseif($data['type'] == 'loyalty') @endif @endforeach
{{translate($data['type'].'_'.'Transactions')}}
{{translate('search_Criteria').' '.'-'}} {{translate('customer').' '.'-'.' '.ucwords($data['customer'] == 'all_customers' ? translate('all_customers') : $data['customer']['f_name'].' '.$data['customer']['l_name'])}}
{{translate('transaction_Type').' '.'-'.' '.!empty($data['transaction_type']) ? translate($data['transaction_type']) : translate('all')}}
{{translate('from').' '.'-'.' '. ($data['from'] ? date('d M, Y',strtotime($data['from'])) : '') }}
{{translate('to').' '.'-'.' '.($data['to'] ? date('d M, Y',strtotime($data['to'])) : '') }}
{{ translate('search_Summary').' '.'-' }} {{translate('total_Debit').' '.'-'.' '.($data['type'] == 'wallet' ? usdToDefaultCurrency(amount: $data['debit'] ?? 0) : $data['debit'])}} {{translate('total_Credit').' '.'-'.' '.($data['type'] == 'wallet' ? usdToDefaultCurrency(amount: $data['credit'] ?? 0) : $data['credit'])}}
{{translate('SL')}} {{translate('transaction_ID')}} {{translate('customer_Name')}} {{translate('credit')}} {{translate('debit')}} {{translate('balance')}} {{translate('transaction_Type')}} {{translate('reference')}} {{translate('date')}}
{{++$key}} {{$item->transaction_id}} {{ucwords(($item->user?->f_name ?? translate('customer_not_found')).' '.$item->user?->l_name)}}{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item->credit ?? 0))}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item->debit ?? 0))}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item->balance ?? 0))}}{{$item->credit}} {{$item->debit}} {{$item->balance}} {{translate($item->transaction_type)}} {{translate(str_replace('_',' ',$item->reference)) }} {{date('d M, Y',strtotime($item->created_at))}}
file-exports/refund-transaction-report.blade.php000064400000004376150075320660016101 0ustar00 @foreach ($data['transactions'] as $key=>$transaction) @endforeach
{{translate('refund_Transaction_Report_List')}}
{{ translate('filter_Criteria') .' '.'-'}} {{translate('search_Bar_Content').' '.'-'.' '. ($data['searchValue'] ?? 'N/A')}}
{{translate('payment_Method').' '.'-'.' '.translate($data['paymentMethod'] ?? 'all')}}
{{translate('SL')}} {{translate('product_Image')}} {{translate('product_Name')}} {{translate('refund_ID')}} {{translate('order_ID')}} {{translate('shop_Name')}} {{translate('payment_Method')}} {{translate('payment_Status')}} {{translate('paid_By')}} {{translate('amount')}} {{translate('transaction_Type')}}
{{++$key}} {{ isset($transaction->orderDetails->product->name) ? Str::limit($transaction->orderDetails->product->name, 40) : translate('data_not_found') }} {{$transaction->refund_id}} {{$transaction->order_id}} {{$transaction->order->seller_is == 'seller' && $transaction->order->seller ? $transaction->order->seller->shop->name : translate('inhouse')}} {{translate(str_replace('_',' ',$transaction->payment_method))}} {{translate(str_replace('_',' ',$transaction->payment_status))}} {{translate($transaction->paid_by)}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->amount), currencyCode: getCurrencyCode())}} {{ $transaction->transaction_type == 'Refund' ? translate('refunded') : str_replace('_',' ',$transaction->transaction_type)}}
file-exports/customer-list.blade.php000064400000004016150075320660013563 0ustar00 @foreach ($data['customers'] as $key=>$item) @endforeach
{{translate('customer_List')}}
{{ translate('customer_Analytics').' '.'-' }} {{translate('total_Customer').' '.'-'.' '.count($data['customers'])}}
{{translate('active_Customer').' '.'-'.' '.$data['active']}}
{{translate('inactive_Customer').' '.'-'.' '.$data['inactive']}}
{{translate('search_Criteria')}}- {{translate('search_Bar_Content').' '.'-'.' '.!empty($data['searchValue']) ? $data['searchValue'] : 'N/A'}}
{{translate('SL')}} {{translate('customer_Image')}} {{translate('Name')}} {{translate('phone')}} {{translate('email')}} {{translate('date_of_Joining')}} {{translate('total_Order')}} {{translate('status')}}
{{++$key}} {{ucwords(($item->f_name?? translate('not_found')).' '.$item->l_name)}} {{$item?->phone ?? translate('not_found')}} {{ucwords($item->email)}} {{date('d M, Y ',strtotime($item->created_at))}} {{$item->orders_count}} {{translate($item->is_active == 1 ? 'active' : 'inactive')}}
file-exports/order-export.blade.php000064400000013633150075320660013410 0ustar00 @if($data['order_status'] == 'all') @endif @if(isset($data['data-from']) && $data['data-from'] == 'admin') @endif @if($data['order_status'] == 'all') @endif @foreach ($data['orders'] as $key=>$order) @php if ($order->extra_discount_type == 'percent') { $extra_discount = $order->total_price*$order->extra_discount /100; }else { $extra_discount = $order->extra_discount; } $extraDiscountFinal = $order->is_shipping_free == 1 ? $extra_discount : 0; $totalAmount = ($order?->order_amount ?? 0) + $extraDiscountFinal; $defaultCurrencyCode = getCurrencyCode(); @endphp @if(isset($data['data-from']) && $data['data-from'] == 'admin') @endif @if($data['order_status'] == 'all') @endif @endforeach
{{translate('order_List')}}
{{ translate('filter_criteria').' '.'-' }} @if($data['order_status'] != 'all') {{translate('order_Status').' '.'-'.' '.translate($data['order_status'] != 'failed' ? $data['order_status'] : 'failed_to_deliver')}}
@endif {{translate('search_Bar_Content').' '.'-'.' '.$data['searchValue'] ?? 'N/A'}}
{{translate('order_Type').' '.'-'.' '.translate($data['order_type']== 'admin' ? 'inhouse' : ($data['order_type'] == 'default_type' ? 'website_order' : $data['order_type']) )}}
{{translate('store').' '.'-'.' '.ucwords($data['seller']?->shop?->name ?? translate('all'))}}
{{translate('customer_Name').' '.'-'.' '.ucwords(isset($data['customer']->f_name) ? $data['customer']->f_name.' '.$data['customer']->l_name : translate('all_customers') )}}
{{translate('date_type').' '.'-'.' '.translate(!empty($data['date_type']) ? $data['date_type'] : 'all')}}
@if ($data['date_type'] == 'custom_date') {{translate('from').' '.'-'.' '.$data['from'] ?? date('d M, Y',strtotime($data['from']))}}
{{translate('to').' '.'-'.' '.$data['to'] ?? date('d M, Y',strtotime($data['to']))}}
@endif
{{translate('order_Status')}} @foreach ($data['status_array'] as $key=>$value) {{translate($key != 'failed' ? $key : 'failed_to_deliver').' '.'-'.' '.$value}} @endforeach
{{translate('SL')}} {{translate('Order_ID')}} {{translate('Order_Date')}} {{translate('Customer_Name')}} {{translate('Store_Name')}} {{translate('Total_Items')}} {{translate('Item_Price')}} {{translate('Item_Discount')}} {{translate('Coupon_Discount')}} {{translate('extra_Discount')}} {{translate('Discounted_Amount')}} {{translate('Vat/Tax')}} {{translate('shipping')}} {{translate('Total_Amount')}} {{translate('Payment_Status')}} {{translate('Order_Status')}}
{{++$key}} {{$order->id}} {{date('d M, Y h:i A',strtotime($order->created_at))}} {{ucwords($order->is_guest == 0 ? (($order?->customer?->f_name ?? translate('not_found')) .' '. $order?->customer?->l_name) : translate('guest_customer'))}} {{ucwords($order?->seller_is == 'seller' ? ($order?->seller?->shop->name ?? translate('not_found')) : translate('inhouse'))}} {{$order->total_qty}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order?->total_price ?? 0), currencyCode: getCurrencyCode())}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order?->total_discount ?? 0), currencyCode: getCurrencyCode())}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order?->discount_amount ?? 0), currencyCode: getCurrencyCode())}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $extra_discount), currencyCode: getCurrencyCode())}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: ($order?->total_price ?? 0) - ($order?->total_discount ?? 0)- ($order?->discount_amount ?? 0) - ($order->is_shipping_free == 0 ? $extra_discount : 0)), currencyCode: getCurrencyCode())}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order?->total_tax ?? 0), currencyCode: getCurrencyCode())}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order->is_shipping_free == 0 ? ($order?->shipping_cost ?? 0) : 0), currencyCode: getCurrencyCode())}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $totalAmount ?? 0), currencyCode: getCurrencyCode())}} {{translate($order->payment_status)}} {{translate($order->order_status)}}
file-exports/subscriber-list.blade.php000064400000001625150075320660014070 0ustar00 @foreach ($data['subscription'] as $key=>$item) @endforeach
{{translate('subscriber_List')}}
{{translate('search_Criteria')}}- {{translate('search_Bar_Content')}} - {{!empty($data['search']) ? $data['search'] : 'N/A'}}
{{translate('SL')}} {{translate('Email_ID')}} {{translate('subscription_Date')}}
{{++$key}} {{$item->email}} {{date('d M, Y',strtotime($item->created_at))}}
file-exports/employee-list.blade.php000064400000005061150075320660013542 0ustar00 @foreach ($data['employees'] as $key=>$item) @endforeach
{{translate('employee_List')}}
{{ translate('employee_Analytics') .' '.'-'}} {{translate('filter_By').' '.'-'.' '.ucwords($data['filter'])}}
{{translate('total_Employee').' '.'-'.' '.count($data['employees'])}}
{{translate('active_Employee').' '.'-'.' '.$data['active']}}
{{translate('inactive_Employee').' '.'-'.' '.$data['inactive']}}
{{translate('search_Criteria')}}- {{translate('search_Bar_Content').' '.'-'.' '.$data['search'] ?? 'N/A'}}
{{translate('SL')}} {{translate('employee_Image')}} {{translate('Name')}} {{translate('phone')}} {{translate('email')}} {{translate('role')}} {{translate('accesses')}} {{translate('date_of_Joining')}} {{translate('status')}}
{{++$key}} {{ucwords($item->name)}} {{$item->phone}} {{ucwords($item->email)}} {{ucwords($item?->role?->name)}} @if(!empty($item->role->module_access)) @foreach ( json_decode($item?->role->module_access) as $value) @isset($value) {{ucwords(str_replace('_',' ',$value))}}
@endisset @endforeach @endif
{{date('d M, Y h:i A',strtotime($item->created_at))}} {{translate($item->status == 1 ? 'active' : 'inactive')}}
file-exports/refund-request-list.blade.php000064400000006250150075320660014675 0ustar00 @if(isset($data['data-from']) && $data['data-from'] == 'admin') @endif @foreach ($data['refundList'] as $key=>$item) @php($product = json_decode($item?->orderDetails->product_details)) @if(isset($data['data-from']) && $data['data-from'] == 'admin') @endif @endforeach
{{translate('refund_Order_List')}}
{{ translate('filter_Criteria') .' '.'-'}} {{translate('refund_Status').' '.'-'.' '.translate($data['status'])}}
{{translate('search_Bar_Content')}} - {{!empty($data['search']) ? ucwords($data['search']) : 'N/A'}} @if(isset($data['vendor']))
{{translate('store_Name')}} - {{$data['vendor']?->shop?->name}} @endif
{{ucwords(translate('total'.' '.$data['status'].' '.'refund_Requests'))}} - {{count($data['refundList'])}} @if(isset($data['data-from']) && $data['data-from'] == 'admin')
{{translate('filter_By').' '.'-'.' '.ucwords(translate($data['filter_By']))}} @endif
{{translate('SL')}} {{translate('order_ID')}} {{translate('order_Date')}} {{translate('product_Information')}} {{translate('product_Amount')}} {{translate('Refund_Amount')}} {{translate('customer_Name')}} {{translate('store_Name')}} {{translate('delivery_Name')}} {{translate('refund_Reason')}}
{{++$key}} {{$item->order_id}} {{date('d M, Y h:i A',strtotime($item->order->created_at))}} {{$product->name ?? translate('product_not_found')}}
{{translate('qty') .'-'. $item?->orderDetails->qty}}
{{setCurrencySymbol(amount:usdToDefaultCurrency(amount: $product->unit_price - getProductDiscount(product: (array)$product, price: $product->unit_price)))}} {{ setCurrencySymbol(amount:usdToDefaultCurrency(amount: $item->amount ?? 0))}} {{ucwords(($item?->customer?->f_name ?? translate('not_found')) .' '. $item?->customer?->l_name)}} {{ucwords($item?->order?->seller_is == 'seller' ? ($item?->order?->seller?->shop?->name ?? translate('not_found')) : translate('inhouse'))}} {{ucwords($item?->order?->delivery_type == 'self_delivery' ? (isset($item?->order?->deliveryMan) ? $item?->order?->deliveryMan?->f_name.' '.$item?->order?->deliveryMan?->l_name : translate('not_found')) : ($item?->order?->delivery_service_name ??translate('not_found')."\n".$item?->order?->third_party_delivery_tracking_id ?? translate('not_found')))}} {{translate($item->refund_reason)}}
file-exports/product-stock-report.blade.php000064400000004151150075320660015063 0ustar00 @foreach ($data['products'] as $key=>$item) @endforeach
{{translate('product_Stock_Report_List')}}
{{ translate('filter_Criteria') }} - {{translate('search_Bar_Content')}} - {{ $data['search'] ?? 'N/A'}}
{{translate('store')}} - {{ucwords($data['seller'] != 'all' && $data['seller'] !='inhouse' ? $data['seller']?->shop->name : translate($data['seller'] ?? 'all' ))}}
{{translate('category')}} - {{ucwords($data['category'] != 'all' ? $data['category']['defaultName'] : translate($data['category'] ?? 'all' ))}}
{{translate('stock_Sort_By')}} - {{translate($data['sort'] == 'ASC' ? 'low_to_high' : 'high_to_low')}}
{{translate('SL')}} {{translate('product_Name')}} {{translate('last_Updated_Stock')}} {{translate('current_Stock ')}} {{translate('status')}}
{{++$key}} {{$item['name']}} {{ date('d M Y, h:i:s a', $item['updated_at'] ? strtotime($item['updated_at']) : null) }} {{$item['current_stock']}} @if($item['current_stock'] >= $data['stock_limit']) {{translate('in-Stock')}} @elseif($item['current_stock'] <= 0) {{translate('out_of_Stock')}} @elseif($item['current_stock'] < $data['stock_limit']) {{translate('soon_Stock_Out')}} @endif
file-exports/order-transaction-report-export.blade.php000064400000014433150075320660017243 0ustar00 @if(isset($data['data-from']) && $data['data-from'] == 'admin') @endif @if(isset($data['data-from']) && $data['data-from'] == 'admin') @endif @foreach ($data['transactions'] as $key=>$transaction) @if(isset($data['data-from']) && $data['data-from'] == 'admin') @endif @if(isset($data['data-from']) && $data['data-from'] == 'admin') @endif @endforeach
{{translate('order_Transaction_Report_List')}}
{{ translate('filter_Criteria') .' '.'-'}} {{translate('search_Bar_Content').' '.'-'.' '. ($data['search'] ?? 'N/A')}}
{{translate('status').' '.'-'.' '. translate($data['status'] ?? translate('all'))}}
{{translate('store')}} - {{ucwords($data['vendor'] != 'all' && $data['vendor'] !='inhouse' ? $data['vendor']?->shop->name : $data['vendor'])}}
{{translate('customer')}} - {{ucwords($data['customer'] != 'all' ? ($data['customer']->f_name.' '.$data['customer']->l_name) : translate('all'))}}
{{translate('date_type').' '.'-'.' '.translate($data['dateType'])}}
@if($data['from'] && $data['to']) {{translate('from').' '.'-'.' '.date('d M, Y',strtotime($data['from']))}}
{{translate('to').' '.'-'.' '.date('d M, Y',strtotime($data['to']))}}
@endif
{{translate('SL')}} {{translate('order_ID')}} {{translate('shop_Name')}} {{translate('customer_Name')}} {{translate('total_Product_Amount')}} {{translate('product_Discount')}} {{translate('coupon_Discount')}} {{translate('discounted_Amount')}} {{translate('VAT/TAX')}} {{translate('shipping_Charge')}} {{translate('order_Amount')}} {{translate('delivered_By')}} {{translate('deliveryman_Incentive')}} {{translate('admin_Discount')}} {{translate('vendor_Discount')}} {{translate('admin_Commission')}} {{translate('admin_Net_Income')}} {{translate('vendor_Net_income')}} {{translate('payment_Method')}} {{translate('payment_Status')}}
{{++$key}} {{$transaction['order_id']}} @if($transaction['seller_is'] == 'admin') {{ getWebConfig('company_name') }} @else @if (isset($transaction->seller->shop)) {{ $transaction->seller->shop->name }} @else {{translate('not_found')}} @endif @endif @if (!$transaction->order->is_guest && isset($transaction->customer)) {{ $transaction->customer->f_name}} {{ $transaction->customer->l_name }} @elseif($transaction->order->is_guest) {{translate('guest_customer')}} @else {{translate('not_found')}} @endif {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->orderDetails[0]?->order_details_sum_price??0), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->orderDetails[0]?->order_details_sum_discount??0), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order->discount_amount), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: ($transaction->orderDetails[0]?->order_details_sum_price??0) - ($transaction->orderDetails[0]?->order_details_sum_discount??0) - (isset($transaction->order->coupon) && $transaction->order->coupon->coupon_type != 'free_delivery'?$transaction->order->discount_amount:0)), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->tax ), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order->shipping_cost), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order->order_amount), currencyCode: getCurrencyCode()) }} {{$transaction['delivered_by']}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: ($transaction->order->delivery_type == 'self_delivery' && $transaction->order->delivery_man_id) ? $transaction->order->deliveryman_charge : 0), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['adminCouponDiscount']+$transaction['adminShippingDiscount']), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['vendorCouponDiscount'] + $transaction['vendorShippingDiscount']), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['admin_commission']), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['adminNetIncome']), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['vendorNetIncome']-$transaction['vendorShippingDiscount']), currencyCode: getCurrencyCode()) }} {{str_replace('_',' ',$transaction['payment_method'])}} {{translate(str_replace('_',' ',$transaction['status']))}}
file-exports/product-list.blade.php000064400000011605150075320660013404 0ustar00 @foreach ($data['products'] as $key=>$item) @endforeach
{{translate($data['type'].'_product_List')}}
{{ translate('filter_Criteria').' - ' }} @if(isset($data['vendor'])) {{translate('store_Name')}} - {{$data['vendor']?->shop?->name}}
@endif {{translate('category').' - '. ($data['category'] != 'all' ? $data['category']['defaultName'] : $data['category']) }}
{{translate('sub_Category').' - '. ($data['sub_category'] != 'all' ? $data['sub_category']['defaultName'] : $data['sub_category']) }}
{{translate('sub_Sub_Category').' - '. ($data['sub_sub_category'] != 'all' ? $data['sub_sub_category']['defaultName'] : $data['sub_sub_category']) }}
{{translate('brand').' - '. ($data['brand'] != 'all' ? $data['brand']['defaultName'] : $data['brand']) }} @if($data['type']=='seller')
{{translate('store').' - '. ($data['seller']?->shop->name ?? translate('all'))}}
{{translate('status').' - '. ($data['status']==0 ? translate('pending') : ($data['status'] == 1 ? translate('approved') : translate('denied')) )}} @endif
{{translate('search_Bar_Content').' - '. (!empty($data['searchValue']) ? ucwords($data['searchValue']) : 'N/A') }}
{{translate('SL')}} {{translate('product_Image')}} {{translate('image_URL')}} {{translate('product_Name')}} {{translate('product_SKU')}} {{translate('description')}} @if($data['type']=='seller') {{translate('store_Name')}} @endif {{translate('category_Name')}} {{translate('sub_Category_Name')}} {{translate('sub_Sub_Category_Name')}} {{translate('brand')}} {{translate('product_Type')}} {{translate('price')}} {{translate('tax')}} {{translate('discount')}} {{translate('discount_Type')}} {{translate('rating')}} {{translate('product_Tags')}} {{translate('status')}}
{{++$key}} {{dynamicStorage(path: 'storage/app/public/product/thumbnail/'.$item->thumbnail)}} {{$item->name}} {{$item->code}} {{strip_tags(str_replace(' ', ' ', $item->details))}} @if($data['type']=='seller') {{ucwords($item?->seller?->shop->name ?? translate('not_found'))}} @endif {{ $item?->category->name ?? 'N/A'}} {{ $item?->subCategory->name ?? 'N/A'}} {{ $item?->subSubCategory->name ?? 'N/A'}} {{ $item?->brand->name ?? 'N/A'}} {{ $item?->product_type}} {{setCurrencySymbol(amount: usdToDefaultCurrency($item['unit_price'] ?? 0), currencyCode: getCurrencyCode())}} {{setCurrencySymbol(amount: usdToDefaultCurrency($item['tax'] ?? 0), currencyCode: getCurrencyCode())}} {{setCurrencySymbol(amount: usdToDefaultCurrency($item['discount'] ?? 0), currencyCode: getCurrencyCode())}} {{$item->discount_type}} {{$item?->rating && count($item->rating) > 0 ? number_format($item->rating[0]->average,2) : 'N/A'}} @if($item->tags) @foreach ($item->tags as $tag) {{$tag->tag}}, @endforeach @endif {{translate($item->status == 1 ? 'active' : 'inactive')}}
file-exports/vendor-withdraw-request.blade.php000064400000003672150075320660015572 0ustar00 @if(isset($data['data-from']) && $data['data-from'] == 'admin') @endif @foreach ($data['withdraw_request'] as $key=>$item) @if(isset($data['data-from']) && $data['data-from'] == 'admin') @endif @endforeach
{{translate('vendor_Withdraw_Request')}}
{{ translate('vendor_Withdraw_Analytics') .' '.'-'}} @if(isset($data['vendor'])) {{translate('store_Name')}} - {{$data['vendor']?->shop?->name}}
@endif {{translate('total_Withdraw_Request').' '.'-'.' '.count($data['withdraw_request'])}}
@if($data['filter']=='all') {{translate('total_Pending').' '.'-'.' '.$data['pending']}}
{{translate('total_Approved').' '.'-'.' '.$data['approved']}}
{{translate('total_Denied').' '.'-'.' '.$data['denied']}} @endif
{{translate('filter_Criteria')}}- {{translate($data['filter'])}}
{{translate('SL')}} {{translate('amount')}} {{translate('name')}} {{translate('request_Time')}} {{translate('status')}}
{{++$key}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item['amount'] ?? 0))}} {{ ucwords(($item?->seller?->f_name ?? translate('not_found')) . ' ' . $item?->seller?->l_name) }} {{ date_format( $item->created_at, 'd M ,Y, h:i:s A') }} {{ucwords($item->approved==0 ? 'pending' : ($item->approved==1 ? 'approved' : 'denied'))}}
file-exports/coupon-list.blade.php000064400000004464150075320660013234 0ustar00 @foreach ($data['coupon'] as $key=>$item) @endforeach
{{translate('coupon_List')}}
{{translate('search_Criteria').' '.'-'}} {{translate('search_Bar_Content').' '.'-'.' '.($data['search'] ?? 'N/A')}} @if(isset($data['vendor']))
{{translate('store_Name')}} - {{$data['vendor']?->shop?->name}} @endif
{{translate('SL')}} {{translate('coupon_Title')}} {{translate('coupon_Code')}} {{translate('coupon_Type')}} {{translate('number_of_Uses')}} {{translate('limit_for_Same_User')}} {{translate('min_Purchase_Amount')}} {{translate('max_discount_Amount')}} {{translate('discount_Type')}} {{translate('discount_Amount')}} {{translate('coupon_Bearer')}} {{translate('start_Date')}} {{translate('end_Date')}}
{{++$key}} {{ucwords($item['title'])}} {{$item['code']}} {{translate($item['coupon_type'])}} {{ $item['order_count'] }} {{ $item['limit']==0 ? 'N/A' : $item['limit'] }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item['min_purchase'] ?? 0)) }} {{ $item['discount_type'] == 'percentage' ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item['max_discount'] ?? 0)) : 'N/A' }} {{ translate($item['discount_type']) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item['discount'] ?? 0)) }} {{translate($item['coupon_bearer'] == 'inhouse' ? 'admin' : ($item['coupon_bearer'] == 'seller' ? 'vendor' : $item['coupon_bearer']))}} {{date('d M, y',strtotime($item['start_date']))}} {{date('d M, y',strtotime($item['expire_date']))}}
file-exports/product-report-export.blade.php000064400000004711150075320660015263 0ustar00 @foreach ($data['products'] as $key=>$item) @endforeach
{{translate('product_Report_List')}}
{{ translate('filter_Criteria') .' '.'-'}} {{translate('search_Bar_Content').' '.'-'.' '. $data['search'] ?? 'N/A'}}
{{translate('store').' '.'-'.' '.ucwords($data['seller'] != 'all' && $data['seller'] !='inhouse' ? $data['seller']?->shop->name : translate($data['seller'] ?? 'all' ))}}
{{translate('date_type').' '.'-'.' '.translate($data['date_type'])}}
@if($data['from'] && $data['to']) {{translate('from').' '.'-'.' '.date('d M, Y',strtotime($data['from']))}}
{{translate('to').' '.'-'.' '.date('d M, Y',strtotime($data['to']))}}
@endif
{{translate('SL')}} {{translate('product_Name')}} {{translate('product_Unit_Price')}} {{translate('total_Amount Sold')}} {{translate('total_Quantity_Sold')}} {{translate('average_Product_Value')}} {{translate('current_Stock_Amount')}} {{translate('average_Ratings')}}
{{++$key}} {{$item['name']}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item->unit_price ?? 0 )) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item->orderDetails[0]->total_sold_amount ?? 0)) }} {{ $item->orderDetails[0]->product_quantity ?? 0 }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: ( $item->orderDetails[0]->total_sold_amount ?? 0) / ( $item->orderDetails[0]->product_quantity ?? 1))) }} {{ $item->product_type == 'digital' ? ($item->status==1 ? translate('available') : translate('not_available')) : $item->current_stock }} {{$item?->rating && count($item->rating) > 0 ? number_format($item->rating[0]->average,2) : 0}} ( {{$item->reviews->count()}} )
file-exports/customer-review-list.blade.php000064400000005665150075320660015075 0ustar00 @if(isset($data['data-from']) && $data['data-from'] == 'admin') @endif @foreach ($data['reviews'] as $key=>$item) @if(isset($data['data-from']) && $data['data-from'] == 'admin') @endif @endforeach
{{translate('customer_Reviews')}}
{{ translate('search_Criteria').' '.'-' }} {{translate('search_Bar_Content').' '.'-'.' '.!empty($data['key']) ? ucwords($data['key']) : 'N/A'}} @if(isset($data['vendor']))
{{translate('store_Name')}} - {{$data['vendor']?->shop?->name}} @endif
{{translate('product').' '.'-'.' '.ucwords($data['product_name'] == 'all_products' ? translate('all_Products') : $data['product_name'])}}
{{translate('customer').' '.'-'.' '.ucwords($data['customer_name'] == 'all_customers' ? translate('all_Customers') : $data['customer_name']['f_name'].' '.$data['customer_name']['l_name'])}}
{{translate('status').' '.'-'.' '.translate(!is_null($data['status']) ? ($data['status'] == 1 ? 'active' : 'inactive') : 'all_status')}}
{{translate('from').' '.'-'.' '.($data['from'] ? date('d M, Y',strtotime($data['from'])) : '') }}
{{translate('to').' '.'-'.' '. ($data['to'] ? date('d M, Y',strtotime($data['to'])) : '')}}
{{translate('SL')}} {{translate('product_Name')}} {{translate('customer_Name')}} {{translate('store_Name')}} {{translate('item_Price')}} {{translate('rating')}} {{translate('review')}}
{{++$key}} {{$item?->product?->name ?? translate('product_not_found')}} {{ucwords(($item->customer?->f_name ?? translate('customer_not_found')).' '.$item->customer?->l_name)}} {{ucwords($item?->product?->seller?->shop->name ?? translate('store_not_found'))}} {{$item?->product ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item?->product->unit_price ?? 0)) : translate('not_found')}} {{$item?->rating}} {{$item?->comment}}
file-exports/customer-order-list.blade.php000064400000004115150075320660014674 0ustar00 @foreach ($data['orders'] as $key=>$order) @endforeach
{{translate('customer_Order_List')}}
{{ translate('Customer_Info').' '.'-' }} {{translate('customer_Name').' '.'-'.' '.ucwords($data['customer']->f_name.' '.$data['customer']->l_name)}}
{{translate('customer_Email').' '.'-'.' '.$data['customer']->email ?? translate('data_not_found')}}
{{translate('customer_Phone').' '.'-'.' '.$data['customer']->phone ?? translate('data_not_found')}}
{{translate('total_Order').' '.'-'.' '.count($data['orders']) }}
{{translate('search_Bar_Content'.' - ')}} {{$data['searchValue'] ?? 'N/A'}}
{{translate('SL')}} {{translate('Order_ID')}} {{translate('Order_Date')}} {{translate('Store_Name')}} {{translate('Total_Amount')}} {{translate('Payment_Status')}} {{translate('Order_Status')}}
{{++$key}} {{$order->id}} {{date('d M, Y h:i A',strtotime($order->created_at))}} {{ucwords($order?->seller_is == 'seller' ? ($order?->seller?->shop->name ?? translate('not_found')) : translate('inhouse'))}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order['order_amount'] ?? 0), currencyCode: getCurrencyCode())}} {{translate($order->payment_status)}} {{translate($order->order_status)}}
errors/403.blade.php000064400000000732150075320660010153 0ustar00@extends('errors::minimal') @section('title', translate('Forbidden')) @section('message')

{{ '403' }}

{{ __($exception->getMessage() ?: translate('Forbidden')) }}

@endsection errors/minimal.blade.php000064400000003273150075320660011276 0ustar00 @yield('title')
@yield('code')
@yield('message')
errors/429.blade.php000064400000000710150075320660010157 0ustar00@extends('errors::minimal') @section('title', translate('Too_Many_Requests')) @section('message')

{{ '429' }}

{{translate('Too_Many_Requests')}}

@endsection errors/404.blade.php000064400000002102150075320660010145 0ustar00@extends('errors::minimal') @section('title', translate('page_Not_found')) @section('message')
@include('errors.404-icon')

{{translate('page_Not_found')}}

{{translate('we_are_sorry')}}, {{translate('the_page_you_requested_could_not_be_found')}}
{{translate('please_go_back_to_the_homepage')}}

@endsection errors/503.blade.php000064400000002635150075320660010160 0ustar00 {{ translate('maintenance_Mode_On') }}
{{ translate('maintenance-mode') }}

{{ translate('website_is_under_maintenance') }}


{{ translate('please_come_back_later') }}
errors/illustrated-layout.blade.php000064400000003220150075320660013507 0ustar00 @yield('title')
@yield('code', translate('Oh_no'))

@yield('message')

@yield('image')
errors/500.blade.php000064400000001305150075320660010146 0ustar00@extends('errors::minimal') @section('title', __('Not Found')) @section('message')

{{ translate('We_are_sorry_server_is_not_responding') }}
{{translate('Try_after_sometime')}}

@endsection errors/419.blade.php000064400000000676150075320660010171 0ustar00@extends('errors::minimal') @section('title', translate('Page_Expired')) @section('message')

{{ '419' }}

{{translate('Page_Expired')}}

@endsection errors/401.blade.php000064400000000676150075320660010160 0ustar00@extends('errors::minimal') @section('title', translate('Unauthorized')) @section('message')

{{ '401' }}

{{translate('Unauthorized')}}

@endsection errors/404-icon.blade.php000064400000032707150075320660011111 0ustar00 errors/layout.blade.php000064400000001433150075320660011161 0ustar00 @yield('title')
@yield('message')
admin-views/profile/index.blade.php000064400000002603150075320660013322 0ustar00@extends('layouts.back-end.app') @section('title', translate('profile')) @section('content')

{{translate('my_profile')}}

{{translate('name')}} : {{$admin->name}}

{{translate('phone')}} : {{$admin->phone}}
{{translate('email')}} : {{$admin->email}}
{{translate('edit')}}
@endsection admin-views/profile/update-view.blade.php000064400000040676150075320660014461 0ustar00@extends('layouts.back-end.app') @section('title', translate('profile_Settings')) @push('css_or_js') @endpush @section('content')
@csrf
@php($banner = dynamicAsset(path: 'public/assets/back-end/img/media/admin-profile-bg.png'))
{{translate('image')}}

{{translate('basic_Information')}}

{{translate('change_Password')}}

@csrf @method('patch')
@endsection @push('script') @endpush admin-views/report/inhouse-product-sale.blade.php000064400000010136150075320660016140 0ustar00@extends('layouts.back-end.app') @section('title', translate('inhouse_product_sale Report')) @push('css_or_js') @endpush @section('content')

{{translate('inhouse_sale')}}

@foreach($products as $key=> $data) @endforeach
{{translate('SL')}} {{translate('product_Name')}} {{translate('total_Sale')}}
{{$key+1}} {{$data['name']}} {{$data->orderDelivered->sum('qty')}}
{!! $products->links() !!}
@if(count($products) <= 0) @include('layouts.back-end._empty-state',['text'=>'no_product_found'],['image'=>'default']) @endif
@endsection admin-views/report/order-index.blade.php000064400000054353150075320660014317 0ustar00@extends('layouts.back-end.app') @section('title', translate('order_Report')) @section('content')

{{translate('order_Report')}}

{{translate('filter_Data')}}

{{translate('image')}}

{{ $order_count['total_order'] }}

{{translate('total_Orders')}}
{{ $order_count['canceled_order'] }}
{{translate('canceled')}} img
{{ $order_count['ongoing_order'] }}
{{translate('ongoing')}} img
{{ $order_count['delivered_order'] }}
{{translate('completed')}} img
{{translate('image')}}

{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $due_amount+$settled_amount), currencyCode: getCurrencyCode()) }}

{{translate('total_Order_Amount')}}
{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $due_amount), currencyCode: getCurrencyCode()) }}
{{translate('due_Amount')}} {{translate('image')}}
{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $settled_amount), currencyCode: getCurrencyCode()) }}
{{translate('already_Settled')}} {{translate('image')}}
@foreach($chart_data['order_amount'] as $amount) @php($chartVal[] = usdToDefaultCurrency(amount: $amount)) @endforeach
@include('layouts.back-end._apexcharts',['title'=>'order_Statistics','statisticsValue'=>$chartVal,'label'=>array_keys($chart_data['order_amount']),'statisticsTitle'=>'total_settled_amount'])
{{translate('payment_Statistics')}}

{{ getCurrencySymbol(currencyCode: getCurrencyCode()) }}{{getFormatCurrency(amount: usdToDefaultCurrency(amount: $payment_data['total_payment'])) }}

{{translate('completed')}}
{{translate('payments')}}
{{translate('cash_Payments')}} ({{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['cash_payment']), currencyCode: getCurrencyCode()) }})
{{translate('digital_Payments')}} ({{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['digital_payment']), currencyCode: getCurrencyCode()) }})       
{{translate('wallet')}} ({{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['wallet_payment']), currencyCode: getCurrencyCode()) }})
{{translate('offline_payments')}} ({{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['offline_payment']), currencyCode: getCurrencyCode()) }})

{{translate('total_Orders')}} {{ $orders->total() }}

@foreach($orders as $key=>$order) @endforeach
{{translate('SL')}} {{translate('order_ID')}} {{translate('total_Amount')}} {{translate('product_Discount')}} {{translate('coupon_Discount')}} {{translate('shipping_Charge')}} {{translate('VAT/TAX')}} {{translate('commission')}} {{translate('deliveryman_incentive')}} {{translate('status')}}
{{ $orders->firstItem()+$key }} {{$order->id}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order?->order_amount??0), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order?->details_sum_discount??0), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order?->discount_amount??0), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order->shipping_cost - ($order->extra_discount_type == 'free_shipping_over_order_amount' ? $order->extra_discount : 0)), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order?->details_sum_tax??0), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order?->admin_commission??0), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order?->deliveryman_charge??0), currencyCode: getCurrencyCode()) }}
@if($order['order_status']=='pending') {{translate($order['order_status'])}} @elseif($order['order_status']=='processing' || $order['order_status']=='out_for_delivery') {{str_replace('_',' ',($order['order_status'] == 'processing') ? translate('packaging'):translate($order['order_status']))}} @elseif($order['order_status']=='confirmed') {{translate($order['order_status'])}} @elseif($order['order_status']=='failed') {{translate('failed_to_deliver')}} @elseif($order['order_status']=='delivered') {{translate($order['order_status'])}} @else {{translate($order['order_status'])}} @endif
@if(count($orders)==0) @include('layouts.back-end._empty-state',['text'=>'no_order_found'],['image'=>'default']) @endif
{!! $orders->links() !!}
@endsection @push('script_2') @endpush admin-views/report/transaction-report-inline-menu.blade.php000064400000001321150075320660020136 0ustar00 admin-views/report/seller-earning.blade.php000064400000037135150075320660015005 0ustar00@extends('layouts.back-end.app') @section('title', translate('earning_Reports')) @section('content')

{{translate('earning_Reports')}}

@include('admin-views.report.earning-report-inline-menu')

{{ translate('filter_Data')}}

{{ $data['total_seller'] }}

{{ translate('total_Vendor')}}

{{ $data['all_product'] }}

{{ translate('total_Vendor_Products')}}
{{ $data['rejected_product'] }}
{{ translate('denied')}}
{{ $data['pending_product'] }}
{{ translate('pending_Request')}}
{{ $data['active_product'] }}
{{ translate('approved')}}

{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $total_earning), currencyCode: getCurrencyCode()) }}

{{ translate('total_Earning')}}
@foreach($chart_earning_statistics as $amount) @php($chartEarningStatistics[] = usdToDefaultCurrency(amount: $amount)) @endforeach
@include('layouts.back-end._apexcharts',['title'=>'earning_Statistics','statisticsValue'=>$chartEarningStatistics,'label'=>array_keys($chart_earning_statistics),'statisticsTitle'=>'total_Earnings','average'=>(array_sum($chartEarningStatistics)/count($chartEarningStatistics))])
{{ translate('vendor_Wallet_Status')}}

{{ getCurrencySymbol(currencyCode: getCurrencyCode()) }}{{getFormatCurrency(amount: usdToDefaultCurrency(amount: $payment_data['wallet_amount'] ?? 0)) }}

{{ translate('wallet_Amount')}}
{{translate('withdrawble_Balance')}} ({{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['withdrawable_balance'] ?? 0), currencyCode: getCurrencyCode()) }})
{{translate('pending_Withdraws')}} ({{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['pending_withdraw'] ?? 0), currencyCode: getCurrencyCode()) }})
{{translate('already_Withdrawn')}} ({{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['already_withdrawn'] ?? 0), currencyCode: getCurrencyCode()) }})

{{translate('total_Vendor')}} {{ count($table_earning['seller_earn_table']) }}

@php($i=0) @foreach($table_earning['seller_earn_table'] as $key=>$seller_earn) @php($shipping_earn_table = isset($table_earning['shipping_earn_table'][$key]['amount']) ? $table_earning['shipping_earn_table'][$key]['amount'] : 0) @php($deliveryman_incentive_table = isset($table_earning['deliveryman_incentive_table'][$key]['amount']) ? $table_earning['deliveryman_incentive_table'][$key]['amount'] : 0) @php($commission_given_table = isset($table_earning['commission_given_table'][$key]['amount']) ? $table_earning['commission_given_table'][$key]['amount'] : 0) @php($discount_given_table = isset($table_earning['discount_given_table'][$key]['amount']) ? $table_earning['discount_given_table'][$key]['amount'] : 0) @php($discount_given_bearer_admin_table = isset($table_earning['discount_given_bearer_admin_table'][$key]['amount']) ? $table_earning['discount_given_bearer_admin_table'][$key]['amount'] : 0) @php($total_tax_table = isset($table_earning['total_tax_table'][$key]['amount']) ? $table_earning['total_tax_table'][$key]['amount'] : 0) @php($total_refund_table = isset($table_earning['total_refund_table'][$key]['amount']) ? $table_earning['total_refund_table'][$key]['amount'] : 0) @php($total_earn_from_order=$seller_earn['amount']+$discount_given_table-$total_tax_table) @endforeach
{{translate('SL')}} {{translate('vendor_Info')}} {{translate('earn_From_Order')}} {{translate('earn_From_Shipping')}} {{translate('deliveryman_incentive')}} {{translate('commission_Given')}} {{translate('discount_Given')}} {{translate('tax_Collected')}} {{translate('refund_Given')}} {{translate('total_Earning')}}
{{ ++$i }}
@if(isset($seller_earn['seller_id']) && isset($seller_earn['name'])) {{ $seller_earn['name'] }} @else {{ translate('vendor_not_found') }} @endif
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $total_earn_from_order), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $shipping_earn_table), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $deliveryman_incentive_table), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $commission_given_table), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $discount_given_table), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $total_tax_table), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $total_refund_table), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $total_earn_from_order+$shipping_earn_table+$total_tax_table-$discount_given_table-$total_refund_table-$commission_given_table-$deliveryman_incentive_table), currencyCode: getCurrencyCode()) }}
@if(count($table_earning['seller_earn_table']) <= 0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
@endsection @push('script_2') @endpush admin-views/report/earning-index.blade.php000064400000070131150075320660014617 0ustar00@extends('layouts.back-end.app') @section('title', translate('Earning_Report')) @section('content')

{{translate('Earning_Report')}}

Image Description

{{translate('Earning_Report')}} {{translate('overview')}}

{{translate('admin')}} :
{{auth('admin')->user()->name}}
{{translate('date')}}
( {{session('from_date')}} - {{session('to_date')}} )
@csrf
@php $total_tax=\App\Models\OrderTransaction::where(['status'=>'disburse']) ->whereBetween('created_at', [$from, $to]) ->sum('tax'); @endphp @php $total_earning =\App\Models\OrderTransaction::where(['status'=>'disburse']) ->whereBetween('created_at', [$from, $to]) ->sum('order_amount'); @endphp @php $total_commission =\App\Models\OrderTransaction::where(['status'=>'disburse']) ->whereBetween('created_at', [$from, $to]) ->sum('admin_commission'); @endphp @php $total = $total_earning+$total_tax + $total_commission; @endphp

{{translate('total_earning')}}

{{\App\Utils\BackEndHelper::set_symbol(\App\Utils\BackEndHelper::usd_to_currency($total_earning))}}

{{translate('total_Tax')}}

{{\App\Utils\BackEndHelper::set_symbol(\App\Utils\BackEndHelper::usd_to_currency($total_tax))}}

{{translate('total_commission')}}

{{\App\Utils\BackEndHelper::set_symbol(\App\Utils\BackEndHelper::usd_to_currency($total_commission))}}
@php $total_sold=\App\Models\OrderTransaction::where(['status'=>'disburse'])->whereBetween('created_at', [date('y-01-01'), date('y-12-31')])->sum('order_amount'); $t=\App\Models\OrderTransaction::where(['status'=>'disburse'])->whereBetween('created_at', [date('y-01-01'), date('y-12-31')])->sum('tax'); $c=\App\Models\OrderTransaction::where(['status'=>'disburse'])->whereBetween('created_at', [date('y-01-01'), date('y-12-31')])->sum('admin_commission'); $t_c_t = $total_sold +$t +$c; @endphp
{{translate('total_sale_of')}} {{date('Y')}} :
{{\App\Utils\BackEndHelper::usd_to_currency($total_sold)." "}}
{{\App\Utils\BackEndHelper::currency_symbol()}}
@php $sold=[]; $from = \Carbon\Carbon::now()->startOfYear()->format('Y-m-d'); $to = \Carbon\Carbon::now()->endOfYear()->format('Y-m-d'); $data=\App\Models\OrderTransaction::where(['status'=>'disburse'])->select( \Illuminate\Support\Facades\DB::raw('SUM(order_amount) as sum'), \Illuminate\Support\Facades\DB::raw('YEAR(created_at) year, MONTH(created_at) month') )->whereBetween('created_at', [$from, $to])->groupby('year', 'month')->get()->toArray(); for ($inc = 1; $inc <= 12; $inc++) { $sold[$inc] = 0; foreach ($data as $match) { if ($match['month'] == $inc) { $sold[$inc] = $match['sum']; } } } @endphp @php $tax=[]; $from = \Carbon\Carbon::now()->startOfYear()->format('Y-m-d'); $to = \Carbon\Carbon::now()->endOfYear()->format('Y-m-d'); $data=\App\Models\OrderTransaction::where(['status'=>'disburse'])->select( \Illuminate\Support\Facades\DB::raw('SUM(tax) as sum'), \Illuminate\Support\Facades\DB::raw('YEAR(created_at) year, MONTH(created_at) month') )->whereBetween('created_at', [$from, $to])->groupby('year', 'month')->get()->toArray(); for ($inc = 1; $inc <= 12; $inc++) { $tax[$inc] = 0; foreach ($data as $match) { if ($match['month'] == $inc) { $tax[$inc] = $match['sum']; } } } @endphp @php $commission=[]; $from = \Carbon\Carbon::now()->startOfYear()->format('Y-m-d'); $to = \Carbon\Carbon::now()->endOfYear()->format('Y-m-d'); $data=\App\Models\OrderTransaction::where(['status'=>'disburse'])->select( \Illuminate\Support\Facades\DB::raw('SUM(admin_commission) as sum'), \Illuminate\Support\Facades\DB::raw('YEAR(created_at) year, MONTH(created_at) month') )->whereBetween('created_at', [$from, $to])->groupby('year', 'month')->get()->toArray(); for ($inc = 1; $inc <= 12; $inc++) { $commission[$inc] = 0; foreach ($data as $match) { if ($match['month'] == $inc) { $commission[$inc] = $match['sum']; } } } @endphp
@endsection @push('script_2') @endpush admin-views/report/all-product.blade.php000064400000036705150075320660014326 0ustar00@extends('layouts.back-end.app') @section('title', translate('product_Report')) @push('css_or_js') @endpush @section('content')

{{translate('product_Report')}}

@include('admin-views.report.product-report-inline-menu')

{{translate('filter_Data')}}

{{ $product_count['reject_product_count']+$product_count['active_product_count']+$product_count['pending_product_count'] }}

{{translate('total_Product')}}
{{ $product_count['reject_product_count'] }}
{{translate('rejected')}}
{{ $product_count['pending_product_count'] }}
{{translate('pending')}}
{{ $product_count['active_product_count'] }}
{{translate('active')}}

{{ $total_product_sale }}

{{translate('total_Product_Sale')}}

{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $total_discount_given), currencyCode: getCurrencyCode()) }}

{{translate('total_Discount_Given')}} img
@include('layouts.back-end._apexcharts',['title'=>'product_Statistics','statisticsValue'=>$chart_data['total_product'],'label'=>array_keys($chart_data['total_product']),'statisticsTitle'=>'total_product','getCurrency'=>false])

{{translate('total_Product')}} {{ $products->total() }}

@foreach($products as $key=>$product) @endforeach
{{translate('SL')}} {{translate('product_Name')}} {{translate('product_Unit_Price')}} {{translate('total_Amount_Sold')}} {{translate('total_Quantity_Sold')}} {{translate('average_Product_Value')}} {{translate('current_Stock_Amount')}} {{translate('average_Ratings')}}
{{ $products->firstItem()+$key }} {{\Illuminate\Support\Str::limit($product['name'], 20)}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product->unit_price), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: isset($product->orderDetails[0]->total_sold_amount) ? $product->orderDetails[0]->total_sold_amount : 0), currencyCode: getCurrencyCode()) }} {{ isset($product->orderDetails[0]->product_quantity) ? $product->orderDetails[0]->product_quantity : 0 }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: ( isset($product->orderDetails[0]->total_sold_amount) ? $product->orderDetails[0]->total_sold_amount : 0) / (isset($product->orderDetails[0]->product_quantity) ? $product->orderDetails[0]->product_quantity : 1) ), currencyCode: getCurrencyCode()) }} {{ $product->product_type == 'digital' ? ($product->status==1 ? translate('available') : translate('not_available')) : $product->current_stock }}
{{count($product->rating)>0?number_format($product->rating[0]->average, 2, '.', ' '):0}}
( {{$product->reviews->count()}} )
{!! $products->links() !!}
@if(count($products)==0) @include('layouts.back-end._empty-state',['text'=>'no_product_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/report/partials/products-table.blade.php000064400000005657150075320660016651 0ustar00 @foreach($products_array as $key=>$data) @endforeach
# {{translate('product_Name')}} {{translate('total_Sale')}}
{{$key+1}} {{$data['product_name']}} {{$data['qty']}}
admin-views/report/partials/products-stock-table.blade.php000064400000001477150075320660017766 0ustar00 @foreach($products as $key=>$data) @endforeach
# {{translate('product_Name')}} {{translate('total_Stock')}}
{{$key+1}} {{$data['name']}} {{$data['current_stock']}}
admin-views/report/product-in-wishlist.blade.php000064400000021512150075320660016016 0ustar00@extends('layouts.back-end.app') @section('title', translate('product_Report')) @push('css_or_js') @endpush @section('content')

{{translate('product_Report')}}

@include('admin-views.report.product-report-inline-menu')

{{translate('filter_Data')}}

{{translate('total_Products')}} {{ $products->total() }}

@foreach($products as $key=>$data) @endforeach
{{translate('SL')}} {{translate('product_Name')}} {{translate('date')}} {{translate('total_in_Wishlist')}}
{{$products->firstItem()+$key}} {{\Illuminate\Support\Str::limit($data['name'], 20)}} {{ date('d M Y', $data['created_at'] ? strtotime($data['created_at']) : null) }} {{ $data->wish_list_count }}
{!! $products->links() !!}
@if(count($products)==0) @include('layouts.back-end._empty-state',['text'=>'no_product_found'],['image'=>'default']) @endif
@endsection admin-views/report/admin-earning-duration-wise-pdf.blade.php000064400000025642150075320660020146 0ustar00 Admin Earning Statement

{{translate('admin_Earning_Report')}}

{{translate('date')}} : {{ date('d/m/Y') }}

{{translate('duration')}} : {{ $earning_data['duration'] }}


{{translate('SL')}} {{translate('details')}} {{translate('amount')}}
1 {{translate('in_House_earning')}} {{ \App\Utils\BackEndHelper::set_symbol(\App\Utils\BackEndHelper::usd_to_currency($earning_data['inhouse_earning'])) }}
2 {{translate('admin_Commission')}} {{ \App\Utils\BackEndHelper::set_symbol(\App\Utils\BackEndHelper::usd_to_currency($earning_data['admin_commission'])) }}
3 {{translate('earning_From_Shipping')}} {{ \App\Utils\BackEndHelper::set_symbol(\App\Utils\BackEndHelper::usd_to_currency($earning_data['shipping_earn'])) }}
4 {{translate('deliveryman_incentive')}} {{ \App\Utils\BackEndHelper::set_symbol(\App\Utils\BackEndHelper::usd_to_currency($earning_data['deliveryman_incentive'])) }}
5 {{translate('discount_Given')}} {{ \App\Utils\BackEndHelper::set_symbol(\App\Utils\BackEndHelper::usd_to_currency($earning_data['discount_given'])) }}
6 {{translate('total_Tax')}} {{ \App\Utils\BackEndHelper::set_symbol(\App\Utils\BackEndHelper::usd_to_currency($earning_data['total_tax'])) }}
7 {{translate('refund_Given')}} {{ \App\Utils\BackEndHelper::set_symbol(\App\Utils\BackEndHelper::usd_to_currency($earning_data['refund_given'])) }}
{{translate('total_Earning')}} {{ \App\Utils\BackEndHelper::set_symbol(\App\Utils\BackEndHelper::usd_to_currency($earning_data['total_earning'])) }}























{{translate('phone')}} : {{ $company_phone }}
{{translate('email')}} : {{ $company_email }}
{{url('/')}}
{{translate('all_copy_right_reserved_©_'.date('Y').'_').$company_name}}
admin-views/report/product-stock.blade.php000064400000023040150075320660014665 0ustar00@extends('layouts.back-end.app') @section('title', translate('product_Report')) @push('css_or_js') @endpush @section('content')

{{translate('product_Report')}}

@include('admin-views.report.product-report-inline-menu')

{{translate('filter_Data')}}

{{translate('total_Products')}} {{ $products->total() }}

@foreach($products as $key=>$data) @endforeach
{{translate('SL')}} {{translate('product_Name')}} {{translate('last_Updated_Stock')}} {{translate('current_Stock')}} {{translate('status')}}
{{$products->firstItem()+$key}} {{ date('d M Y, h:i:s a', $data['updated_at'] ? strtotime($data['updated_at']) : null) }} {{$data['current_stock']}}
@if($data['current_stock'] >= $stock_limit) {{translate('in-Stock')}} @elseif($data['current_stock'] <= 0) {{translate('out_of_Stock')}} @elseif($data['current_stock'] < $stock_limit) {{translate('soon_Stock_Out')}} @endif
{!! $products->links() !!}
@if(count($products)==0) @include('layouts.back-end._empty-state',['text'=>'no_product_found'],['image'=>'default']) @endif
@endsection admin-views/report/admin-earning.blade.php000064400000040625150075320660014605 0ustar00@extends('layouts.back-end.app') @section('title', translate('earning_Reports')) @section('content')

{{translate('earning_Reports')}}

@include('admin-views.report.earning-report-inline-menu')

{{ translate('filter_Data')}}

{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: array_sum($earning_data['total_earning_statistics'])), currencyCode: getCurrencyCode()) }}

{{ translate('total_earnings')}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $earning_data['total_commission']), currencyCode: getCurrencyCode()) }}
{{ translate('commission')}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $earning_data['total_inhouse_earning']), currencyCode: getCurrencyCode()) }}
{{ translate('in_House')}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $earning_data['total_shipping_earn']), currencyCode: getCurrencyCode()) }}
{{ translate('shipping')}}

{{ $earning_data['total_in_house_products'] }}

{{ translate('total_In_House_Products')}}

{{ $earning_data['total_stores'] }}

{{ translate('total_Shop')}}
@foreach($earning_data['total_earning_statistics'] as $amount) @php($earningData[] = usdToDefaultCurrency(amount: $amount)) @endforeach
@include('layouts.back-end._apexcharts',['title'=>'earning_Statistics','statisticsValue'=>$earningData,'label'=>array_keys($earning_data['total_earning_statistics']),'statisticsTitle'=>'total_Earnings'])
{{ translate('payment_Statistics')}}

{{ getCurrencySymbol(currencyCode: getCurrencyCode()) }}{{getFormatCurrency(amount: usdToDefaultCurrency(amount: $payment_data['total_payment'])) }}

{{ translate('payments_Amount')}}
{{translate('cash_payments')}} ({{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['cash_payment']), currencyCode: getCurrencyCode()) }})
{{translate('digital_payments')}} ({{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['digital_payment']), currencyCode: getCurrencyCode()) }})       
{{translate('offline_payments')}} ({{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['offline_payment']), currencyCode: getCurrencyCode()) }})
{{translate('wallet')}} ({{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['wallet_payment']), currencyCode: getCurrencyCode()) }})

{{translate('total_Earnings')}} {{ count($inhouse_earn) }}

@php($i=1) @foreach($inhouse_earn as $key=>$earning) @php($inhouse_earning = $earning-$total_tax[$key]) @endforeach
{{translate('SL')}} {{translate('duration')}} {{translate('in-House_Earning')}} {{translate('commission_Earning')}} {{translate('earn_From_Shipping')}} {{translate('deliveryman_incentive')}} {{translate('discount_Given')}} {{translate('VAT/TAX')}} {{translate('refund_Given')}} {{translate('total_Earning')}} {{translate('action')}}
{{ $i++ }} {{ $key }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $inhouse_earning), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $admin_commission_earn[$key]), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $shipping_earn[$key]), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $deliveryman_incentive[$key]), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $discount_given[$key]), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $total_tax[$key]), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $refund_given[$key]), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $inhouse_earning+$admin_commission_earn[$key]+$total_tax[$key]+$shipping_earn[$key]-$discount_given[$key]-$refund_given[$key] - $deliveryman_incentive[$key]), currencyCode: getCurrencyCode()) }}
@csrf
@if(count($inhouse_earn)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
@endsection @push('script_2') @endpush admin-views/report/product-report-inline-menu.blade.php000064400000001137150075320660017276 0ustar00 admin-views/report/earning-report-inline-menu.blade.php000064400000000751150075320660017242 0ustar00 admin-views/report/seller-product-sale.blade.php000064400000042147150075320660015763 0ustar00@extends('layouts.back-end.app') @section('title', translate('vendor_product_sale_Report')) @push('css_or_js') @endpush @section('content')

{{translate('vendor_Reports')}}

{{translate('filter_Data')}}

back-end/img

{{ $total_product }}

{{translate('products')}}
back-end/img

{{ $canceled_order+$ongoing_order+$delivered_order }}

{{translate('total_Orders')}}
{{ $canceled_order }}
{{translate('canceled')}} img
{{ $ongoing_order }}
{{translate('ongoing')}} img
{{ $delivered_order }}
{{translate('completed')}} img
back-end/img

{{ $deliveryman }}

{{translate('total_Deliveryman')}}
@foreach($chart_data['order_amount'] as $amount) @php($chartVal[] = usdToDefaultCurrency(amount: $amount)) @endforeach
@include('layouts.back-end._apexcharts',['title'=>'order_statistics','statisticsValue'=>$chartVal,'label'=>array_keys($chart_data['order_amount']),'statisticsTitle'=>'total_order_amount'])
back-end/img
{{translate('total_Shop_Earnings')}}

{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $total_store_earning), currencyCode: getCurrencyCode()) }}

{{ translate('total_Vendor') }} {{ $orders->total() }}

@foreach($orders as $key=>$order) @endforeach
{{translate('SL')}} {{ translate('vendor-Info') }} {{translate('total_Order')}} {{translate('commission')}} {{translate('refund_Rate')}} {{translate('action')}}
{{ $orders->firstItem()+$key }}
@if (isset($order->seller->shop))
{{ \Str::limit($order->seller->shop->name, 20)}}
{{$order->seller->f_name.' '.$order->seller->l_name}}
@else {{translate('not_found')}} @endif
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order->total_order_amount), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order->total_admin_commission), currencyCode: getCurrencyCode()) }} $refund['total_refund_amount'] ); } } if (array_key_exists($order->seller_id, $arr)) { echo number_format(($arr[$order->seller_id] / $order->total_order_amount) * 100, 2) . '%'; } else { echo '0%'; } ?>
@if($order->seller_id) @else @endif
{!! $orders->links() !!}
@if(count($orders) <= 0) @include('layouts.back-end._empty-state',['text'=>'no_order_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/support-ticket/singleView.blade.php000064400000030367150075320660015674 0ustar00@extends('layouts.back-end.app') @section('title', translate('support_Ticket')) @section('content')

{{translate('support_ticket')}}

@foreach($supportTicket as $ticket )
{{isset($ticket->customer)?$ticket->customer['f_name'].' '.$ticket->customer['l_name']:translate('not_found')}}
{{isset($ticket->customer)?$ticket->customer['phone']:''}}
{{translate(str_replace('_',' ',$ticket['type']))}}
{{translate('priority')}}: {{translate(str_replace('_',' ',$ticket['priority']))}}
@endforeach
@foreach($ticket->conversations->reverse()->values() as $key => $message) @if ($message['admin_id'])
@if($message->admin_message)

{{$message->admin_message}}

@endif @if ($message['attachment'] !=null && count(json_decode($message['attachment'])) > 0)
@foreach (json_decode($message['attachment']) as $index => $photo) @endforeach
@endif @if($message->admin_message || json_decode($message['attachment']) !=null) {{$message->created_at->diffForHumans()}} @endif
@else
@if($message->customer_message)

{{$message->customer_message}}

@endif @if ($message['attachment'] !=null && count(json_decode($message['attachment'])) > 0)
@foreach (json_decode($message['attachment']) as $index => $photo) @endforeach
@endif @if($message->customer_message || json_decode($message['attachment']) !=null) {{$message->created_at->diffForHumans()}} @endif
@endif @endForeach
@if($ticket->description)

{{$ticket->description}}

@endif @if ($ticket['attachment'] !=null && count(json_decode($ticket['attachment'])) > 0)
@foreach (json_decode($ticket['attachment']) as $index => $photo) @endforeach
@endif {{$ticket->created_at->diffForHumans()}}
@endsection @push('script') @endpush admin-views/support-ticket/view.blade.php000064400000024247150075320660014532 0ustar00@php use Carbon\Carbon; @endphp @extends('layouts.back-end.app') @section('title', translate('support_Ticket')) @section('content')

{{translate('support_ticket')}} {{ $tickets->total() }}

@php($priority=request()->has('priority')?request()->input('priority'):'') @php($status=request()->has('status')?request()->input('status'):'')
@foreach($tickets as $key =>$ticket)
@if($ticket->customer)
{{$ticket->customer->f_name??""}} {{$ticket->customer->l_name??""}}
{{$ticket->customer->email??""}}
{{translate(str_replace('_',' ',$ticket->priority))}} {{translate(str_replace('_',' ',$ticket->status))}}
{{translate(str_replace('_',' ',$ticket->type))}}
@if ($ticket->created_at->diffInDays(Carbon::now()) < 7) {{ date('D h:i:A',strtotime($ticket->created_at)) }} @else {{ date('d M Y h:i:A',strtotime($ticket->created_at)) }} @endif
@else
{{ translate('customer_not_found').'!' }}
@endif
@csrf
{{$ticket->description}}
@endforeach
{{$tickets->links()}}
@if(count($tickets)==0) @include('layouts.back-end._empty-state',['text'=>'no_support_ticket_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/custom-role/edit.blade.php000064400000022727150075320660013762 0ustar00@php use Illuminate\Support\Facades\Session; @endphp @extends('layouts.back-end.app') @section('title', translate('edit_Role')) @section('content') @php($direction = Session::get('direction'))

{{translate('role_update')}}

@csrf
@endsection @push('script') @endpush admin-views/custom-role/create.blade.php000064400000036463150075320660014302 0ustar00@php use Illuminate\Support\Facades\Session; @endphp @extends('layouts.back-end.app') @section('title', translate('create_Role')) @section('content') @php($direction = Session::get('direction'))

{{translate('employee_role_setup')}}

@csrf
{{translate('employee_Roles')}} {{ count($roles) }}
@foreach($roles as $key => $role) @endforeach
{{translate('SL')}} {{translate('role_name')}} {{translate('modules')}} {{translate('created_at')}} {{translate('status')}} {{translate('action')}}
{{$key+1}} {{$role['name']}} @if($role['module_access'] != null) @foreach((array)json_decode($role['module_access']) as $module) @if($module == 'report') {{translate('reports_and_analytics').(!$loop->last ? ',': '')}}
@elseif($module == 'user_section') {{translate('user_management').(!$loop->last ? ',': '')}}
@elseif($module == 'support_section') {{translate('Help_&_Support_Section').(!$loop->last ? ',': '')}}
@else {{translate(str_replace('_',' ', $module)).(!$loop->last ? ',': '')}}
@endif @endforeach @endif
{{date('d-M-y',strtotime($role['created_at']))}}
@csrf
@if(count($roles)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/notification/index.blade.php000064400000031250150075320660014350 0ustar00@php use Illuminate\Support\Str; @endphp @extends('layouts.back-end.app') @section('title', translate('add_new_notification')) @push('css_or_js') @endpush @section('content')

{{translate('send_notification')}}

@csrf
{{translate('image')}}
({{translate('ratio').'1:1'}})
{{ translate('push_notification_table')}} {{ $notifications->total() }}
@foreach($notifications as $key=>$notification) @endforeach
{{translate('SL')}} {{translate('title')}} {{translate('description')}} {{translate('image')}} {{translate('notification_count')}} {{translate('status')}} {{translate('resend')}} {{translate('action')}}
{{$notifications->firstItem()+ $key}} {{Str::limit($notification['title'],30)}} {{Str::limit($notification['description'],40)}} {{ $notification['notification_count'] }}
@csrf
{!! $notifications->links() !!}
@if(count($notifications) <= 0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/notification/update-view.blade.php000064400000006353150075320660015501 0ustar00@extends('layouts.back-end.app') @section('title', translate('update_Notification')) @section('content')

{{translate('push_notification_update')}}

@csrf
{{translate('image')}}
( {{translate('ratio').'1:1'}})
@endsection admin-views/auth/login.blade.php000064400000023420150075320660012624 0ustar00 {{ translate($role) }} | {{ translate('login')}}
@php($e_commerce_logo = getWebConfig(name: 'company_web_logo'))
@csrf

{{translate('sign_in')}}


( {{ translate($role) }} {{translate('Login')}})
@if(isset($recaptcha) && $recaptcha['status'] == 1)

@else @endif
@if(env('APP_MODE')=='demo') @endif
{!! Toastr::message() !!} @if ($errors->any()) @endif @if(isset($recaptcha) && $recaptcha['status'] == 1) @endif admin-views/theme-features/all-pages-banner/edit.blade.php000064400000014312150075320660017526 0ustar00@extends('layouts.back-end.app') @section('title', translate('edit').' - '.translate('all_Pages_Banner')) @section('content')

{{translate('all_Pages_Banner')}}

{{ translate('banner_form')}}
@endsection @push('script') @endpush admin-views/theme-features/all-pages-banner/view.blade.php000064400000033150150075320660017554 0ustar00@extends('layouts.back-end.app') @section('title', translate('all_Pages_Banner ')) @section('content')

{{ translate('All_Pages_Banner') }}

{{ translate('banner_form') }}
@endsection @push('script') @endpush admin-views/theme-features/most-demanded/edit.blade.php000064400000011562150075320660017143 0ustar00@extends('layouts.back-end.app') @section('title', translate('edit_most_demanded')) @section('content')

{{ translate('edit_most_demanded') }}

@csrf
( {{ translate('ratio') }} {{ '5:1' }} )
@endsection admin-views/theme-features/most-demanded/view.blade.php000064400000031171150075320660017166 0ustar00@extends('layouts.back-end.app') @section('title', translate('most_demanded')) @section('content')

{{ translate('most_demanded') }}

@csrf
( {{ translate('ratio') }} {{ translate('4') }}:{{ translate('1') }} )
banner image
{{ translate('most_demanded_table') }} {{ $mostDemandedProducts->total() }}
@if(count($mostDemandedProducts)>0)
@foreach($mostDemandedProducts as $key=>$mostDemanded) @endforeach
{{ translate('SL') }} {{ translate('banner') }} {{ translate('product') }} {{ translate('published') }} {{ translate('action') }}
{{ $mostDemandedProducts->firstItem()+ $key}} @if(isset($mostDemanded->product->name)) {{ $mostDemanded->product->name }} @else {{ translate('no_product_found') }} @endif @if(isset($mostDemanded->product->status ) && $mostDemanded->product->status == 1)
@csrf
@else @endif
{{ $mostDemandedProducts->links() }}
@endif @if(count($mostDemandedProducts)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/category/category-edit.blade.php000064400000020372150075320660015133 0ustar00@extends('layouts.back-end.app') @section('title', translate('category')) @section('content')

@if($category['position'] == 1) {{ translate('sub') }} @elseif($category['position'] == 2) {{ translate('sub_Sub') }} @endif {{ translate('category') }} {{ translate('update') }}

@csrf
@foreach($languages as $lang)
locale == $lang && $t->key == "name") { $translate[$lang]['name'] = $t->value; } } } ?>
@endforeach
@if($category['parent_id']==0 || ($category['position'] == 1 && theme_root_path() == 'theme_aster'))
({{ translate('ratio') }} 1:1)
@endif @if($category['position'] == 2 || ($category['position'] == 1 && theme_root_path() != 'theme_aster'))
@endif
@if($category['parent_id']==0 || ($category['position'] == 1 && theme_root_path() == 'theme_aster'))
@endif
@endsection @push('script') @endpush admin-views/category/sub-category-view.blade.php000064400000036202150075320660015746 0ustar00@extends('layouts.back-end.app') @section('title', translate('sub_Category')) @section('content')

{{ translate('sub_Category_Setup') }}

@csrf
@foreach($languages as $lang)
@endforeach
@if (theme_root_path() == 'theme_aster')
{{ THEME_RATIO[theme_root_path()]['Category Image'] }}
@endif
@if (theme_root_path() == 'theme_aster')
@endif
{{ translate('sub_category_list') }} {{ $categories->total() }}
@if (theme_root_path() == 'theme_aster') @endif @foreach($categories as $key=>$category) @if (theme_root_path() == 'theme_aster') @endif @endforeach
{{ translate('ID') }}{{ translate('sub_category_Image') }}{{ translate('sub_category_name') }} {{ translate('category_name') }} {{ translate('priority') }} {{ translate('action') }}
{{ $category['id']}} {{($category['defaultname']) }} {{$category?->parent?->defaultname ?? translate('category_not_found') }} {{ $category['priority']}}
{{ $categories->links() }}
@if(count($categories)==0) @include('layouts.back-end._empty-state',['text'=>'no_sub_category_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/category/sub-sub-category-view.blade.php000064400000032314150075320660016535 0ustar00@extends('layouts.back-end.app') @section('title', translate('sub_Sub_Category')) @section('content')

{{ translate('sub_Sub_Category_Setup') }}

@csrf
@foreach($languages as $lang)
@endforeach
{{ translate('sub_sub_category_list') }} {{ $categories->total() }}
@foreach($categories as $key=>$category) @endforeach
{{ translate('ID') }} {{ translate('sub_sub_category_name') }} {{ translate('sub_category_name') }} {{ translate('category_name') }} {{ translate('priority') }} {{ translate('action') }}
{{ $category['id']}} {{ $category['defaultName']}} {{$category?->parent?->defaultname ?? translate('sub_category_not_found') }} {{$category?->parent?->parent?->defaultname ??translate('sub_category_not_found') }} {{ $category['priority']}}
{{ $categories->links() }}
@if(count($categories)==0) @include('layouts.back-end._empty-state',['text'=>'no_sub_sub_category_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/category/view.blade.php000064400000043334150075320660013350 0ustar00@extends('layouts.back-end.app') @section('title', translate('category')) @section('content')

{{ translate('category_Setup') }}

@csrf
@foreach($languages as $lang)
@endforeach
* {{ THEME_RATIO[theme_root_path()]['Category Image'] }}
{{ translate('category_list') }} {{ $categories->total() }}
@foreach($categories as $key=>$category) @endforeach
{{ translate('ID') }} {{ translate('category_Image') }} {{ translate('name') }} {{ translate('priority') }} {{ translate('home_category_status') }} {{ translate('action') }}
{{ $category['id'] }}
{{ $category['defaultname'] }} {{ $category['priority'] }}
@csrf
{{ $categories->links() }}
@if(count($categories) == 0) @include('layouts.back-end._empty-state',['text'=>'no_category_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/help-topics/list.blade.php000064400000027503150075320660013763 0ustar00@php use Illuminate\Support\Facades\Session; @endphp @extends('layouts.back-end.app') @section('title', translate('FAQ')) @push('css_or_js') @endpush @section('content')

{{translate('pages')}}

@include('admin-views.business-settings.pages-inline-menu')
{{translate('help_topic_table')}}
@foreach($helps as $key => $help) @endforeach
{{translate('SL')}} {{translate('question')}} {{translate('answer')}} {{translate('ranking')}} {{translate('status')}} {{translate('action')}}
{{ $key + 1 }} {{ $help['question'] }} {{ $help['answer'] }} {{ $help['ranking'] }}
@endsection @push('script') @endpush admin-views/pos/index.blade.php000064400000026737150075320660012501 0ustar00@extends('layouts.back-end.app') @section('title', translate('POS')) @push('css_or_js') @endpush @section('content')
{{ translate('product_Section') }}
@foreach($products as $product) @include('admin-views.pos.partials._single-product',['product'=>$product]) @endforeach
{!!$products->withQueryString()->links()!!}
{{ translate('billing_Section') }}
@include('admin-views.pos.partials._cart-summary')
@if($order) @include('admin-views.pos.partials.modals._print-invoice') @endif @include('admin-views.pos.partials.modals._add-customer') @include('admin-views.pos.partials.modals._hold-orders-modal') @include('admin-views.pos.partials.modals._add-coupon-discount') @include('admin-views.pos.partials.modals._add-discount') @include('admin-views.pos.partials.modals._short-cut-keys') @endsection @push('script_2') @endpush admin-views/pos/partials/_single-product.blade.php000064400000002315150075320660016271 0ustar00
{{ $product['name'] }}
{{ $product['name'] }}
{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product['unit_price'] - getProductDiscount(product: $product, price: $product['unit_price'])), currencyCode: getCurrencyCode()) }}
{{ $product['product_type'] == 'physical' ? ($product['current_stock'] >0 ? $product['current_stock'].' '.$product['unit'].($product['current_stock']>1?'s':'') : translate('out_of_stock').'.') : translate('click_for_details').'.' }}
admin-views/pos/partials/_cart-summary.blade.php000064400000005116150075320660015760 0ustar00@php($currentCustomerData = $summaryData['currentCustomerData'] ?? null) @php($cartNames = $summaryData['cartNames'] ?? []) @if ($summaryData['currentCustomer'] != 'Walking Customer')

{{ translate('customer_Information') }}

{{ translate('name') }} : {{ $currentCustomerData?->f_name.' '.$currentCustomerData?->l_name }}
{{ translate('contact') }} : {{ $currentCustomerData?->phone }}
@endif
{{ translate('clear_Cart')}} {{ translate('new_Order')}}
@include('admin-views.pos.partials._cart') admin-views/pos/partials/modals/_hold-orders-modal.blade.php000064400000001627150075320660020132 0ustar00 admin-views/pos/partials/modals/_add-coupon-discount.blade.php000064400000002210150075320660020462 0ustar00 admin-views/pos/partials/modals/_print-invoice.blade.php000064400000002567150075320660017410 0ustar00@php(session(['last_order'=> false])) admin-views/pos/partials/modals/_add-discount.blade.php000064400000003451150075320660017171 0ustar00 admin-views/pos/partials/modals/_short-cut-keys.blade.php000064400000003277150075320660017522 0ustar00 admin-views/pos/partials/modals/_add-customer.blade.php000064400000014621150075320660017203 0ustar00 admin-views/pos/partials/_view-hold-orders.blade.php000064400000013717150075320660016534 0ustar00@if ($totalHoldOrders > 0)
@if (session()->has('cart_name') && count(session()->get('cart_name')) > 0 ) @php($totalHoldOrdersCount=1) @foreach ($cartItems as $key => $singleCart) @if($singleCart['customerOnHold']) @endif @endforeach @endif
{{translate('SL')}} {{translate('date')}} {{translate('customer_info')}} {{translate('quantity')}} {{translate('total_amount')}} {{translate('action')}}
{{ $totalHoldOrdersCount }} @if (isset(session()->get($key)['add_to_cart_time']))
{{ session()->get($key)['add_to_cart_time']->format('d/m/Y') ?? 'N/a' }}
{{ session()->get($key)['add_to_cart_time']->format('h:m A') ?? '' }}
@else
{{ translate('now') }}
@endif
{{ $singleCart['customerName'] }}
{{ $singleCart['customerPhone'] ?? '' }}
{{ $singleCart['countItem'] }} {{ translate('items') }}
@if (session()->has($key) && count(session()->get($key)) > 0)
@foreach($singleCart['cartItemValue'] as $item) @if(is_array($item))
{{ Str::limit($item['name'], 12 )}}
@if($item['variant'])
{{ translate('variation') }} : {{ $item['variant'] }}
@endif
{{ translate('qty') }} : {{ $item['quantity'] }}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item['productSubtotal']), currencyCode: getCurrencyCode())}}
@endif @endforeach
@endif
@if ($singleCart['discountOnProduct']>0) {{setCurrencySymbol(amount:usdToDefaultCurrency(amount: round($singleCart['subtotal']+$singleCart['discountOnProduct']+$singleCart['totalTax'], 2)), currencyCode: getCurrencyCode())}} @endif {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: round($singleCart['total']+$singleCart['totalTax'], 2)), currencyCode: getCurrencyCode())}}
@else

{{ translate('No_Order_Found') }}

@endif admin-views/pos/partials/_cart.blade.php000064400000022104150075320660014261 0ustar00
@csrf
@foreach($cartItems['cartItemValue'] as $key => $item) @if(is_array($item)) @endif @endforeach
{{ translate('item') }} {{ translate('qty') }} {{ translate('price') }} {{ translate('delete') }}
{{$item['name'].translate('image')}}
{{Str::limit($item['name'], 12)}} @if($item['tax_model'] == 'include') img @endif
{{Str::limit($item['variant'], 20)}}
{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount:$item['productSubtotal']), currencyCode: getCurrencyCode()) }}
{{ translate('sub_total') }} :
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$cartItems['subtotal']+$cartItems['discountOnProduct']), currencyCode: getCurrencyCode())}}
{{ translate('product_Discount') }} :
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($cartItems['discountOnProduct'],2)), currencyCode: getCurrencyCode()) }}
{{ translate('extra_Discount') }} :
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$cartItems['extraDiscount']), currencyCode: getCurrencyCode())}}
{{ translate('coupon_Discount') }} :
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$cartItems['couponDiscount']), currencyCode: getCurrencyCode())}}
{{ translate('tax') }} :
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($cartItems['totalTax'],2)), currencyCode: getCurrencyCode())}}
{{ translate('total') }} :
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($cartItems['total']+$cartItems['totalTax']-$cartItems['couponDiscount'], 2)), currencyCode: getCurrencyCode())}}
{{ translate('paid_By') }}:
  • @php( $walletStatus = getWebConfig('wallet_status') ?? 0) @if ($walletStatus)
  • @endif
@if($cartItems['countItem']) {{ translate('cancel_Order') }} @else {{ translate('cancel_Order') }} @endif
@push('script_2') @endpush admin-views/pos/partials/_search-product.blade.php000064400000003103150075320660016251 0ustar00@if (count($products) > 0) @foreach ($products as $key => $product)
{{$product['name']}}
{{translate('category').' '.':'.' '}}{{isset($product->category) ? $product->category->name : translate('category_not_found') }}
{{translate('brand').' '.':'.' '}}{{isset($product->brand) ? $product->brand->name : translate('brands_not_found') }}
@if ($product->added_by == "seller")
{{translate('shop').' '.':'.' '}}{{isset($product->seller) ? $product->seller->shop->name : translate('shop_not_found') }}
@else
{{translate('shop').' '.':'.' '}}{{$web_config['name']->value}}
@endif
@endforeach @else
{{ translate('No_Product_Found') }}
@endif admin-views/pos/partials/_quick-view.blade.php000064400000031450150075320660015420 0ustar00 admin-views/pos/order/order-details.blade.php000064400000063620150075320660015233 0ustar00@extends('layouts.back-end.app') @section('title', translate('order_Details')) @section('content')

{{ translate('order_Details') }}

{{ translate('order_ID') }} #{{$order['id']}}

{{date('d M Y H:i:s',strtotime($order['created_at'])) }}
{{ translate('status') }}: @if($order['order_status']=='pending') {{ translate(str_replace('_',' ',$order['order_status'])) }} @elseif($order['order_status']=='failed') {{ translate(str_replace('_',' ',$order['order_status'])) }} @elseif($order['order_status']=='processing' || $order['order_status']=='out_for_delivery') {{ translate(str_replace('_',' ',$order['order_status'])) }} @elseif($order['order_status']=='delivered' || $order['order_status']=='confirmed') {{ translate(str_replace('_',' ',$order['order_status'])) }} @else {{ translate(str_replace('_',' ',$order['order_status'])) }} @endif
{{ translate('payment_Method') }} : {{ translate(str_replace('_',' ',$order['payment_method'])) }}
@if(isset($order['transaction_ref']) && $order->payment_method != 'cash_on_delivery' && $order->payment_method != 'pay_by_wallet' && !isset($order->offline_payments))
{{ translate('reference_Code') }} : {{ translate(str_replace('_',' ',$order['transaction_ref'])) }} {{ $order->payment_method == 'offline_payment' ? '('.$order->payment_by.')':'' }}
@endif
{{ translate('payment_Status') }}: @if($order['payment_status']=='paid') {{ translate('paid') }} @else {{ translate('unpaid') }} @endif
@if(getWebConfig('order_verification') && $order->order_type == "default_type") {{ translate('order_verification_code') }} : {{$order['verification_code']}} @endif
@php($item_price=0) @php($subtotal=0) @php($total=0) @php($shipping=0) @php($discount=0) @php($tax=0) @php($extraDiscount=0) @php($product_price=0) @php($total_product_price=0) @php($couponDiscount=0) @foreach($order->details as $key=>$detail) product) { $productDetails = $detail->product; }else { $productDetails = json_decode($detail->product_details); } ?> @if($productDetails) @php($item_price+=$detail['price']*$detail['qty']) @php($subtotal=($detail['price']*$detail['qty'])+$detail['tax']-$detail['discount']) @php($product_price = $detail['price']*$detail['qty']) @php($total_product_price+=$product_price) @if($productDetails->product_type == 'digital') @endif @php($discount+=$detail['discount']) @php($tax+=$detail['tax']) @php($total+=$subtotal) @endif @php($sellerId=$detail->seller_id) @endforeach
{{ translate('SL') }} {{ translate('item_details') }} {{ translate('item_price') }} {{ translate('tax') }} {{ translate('item_discount') }} {{ translate('total_price') }}
{{++$key}}
{{translate('image_description')}}
{{substr($productDetails->name, 0, 30) }}{{strlen($productDetails->name)>10?'...':''}}
{{ translate('qty') }} : {{$detail['qty']}}
{{ translate('unit_price') }} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail->price+( $detail->tax_model =='include' ? $detail->tax : 0)), currencyCode: getCurrencyCode())}} @if ($detail->tax_model =='include') ({{ translate('tax_incl.') }}) @else ({{ translate('tax').":".($productDetails->tax) }}{{$productDetails->tax_type ==="percent" ? '%' :''}}) @endif
@if ($detail->variant)
{{ translate('variation') }}: {{$detail['variant']}}
@endif
@if(isset($productDetails->digital_product_type) && $productDetails->digital_product_type == 'ready_after_sell') @endif
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail['price']*$detail['qty']), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail['tax']), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail['discount']), currencyCode: getCurrencyCode()) }}{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $subtotal), currencyCode: getCurrencyCode()) }}
@php($shipping=$order['shipping_cost'])
{{ translate('item_price') }}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item_price), currencyCode: getCurrencyCode()) }}
{{ translate('item_discount') }}
- {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $discount), currencyCode: getCurrencyCode()) }}
{{ translate('extra_discount') }}
- {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $extraDiscount), currencyCode: getCurrencyCode()) }}
{{ translate('sub_total') }}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item_price-$discount-$extraDiscount), currencyCode: getCurrencyCode()) }}
{{ translate('coupon_discount') }}
- {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $couponDiscount), currencyCode: getCurrencyCode()) }}
{{ translate('vat') }}/{{ translate('tax') }}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $tax), currencyCode: getCurrencyCode()) }}
{{ translate('total') }}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $total+$shipping-$extraDiscount-$couponDiscount), currencyCode: getCurrencyCode()) }}
@if($order->customer)

{{ translate('customer_information') }}

{{translate('image')}}
{{$order->customer['f_name'].' '.$order->customer['l_name']}} {{$order->customer['phone']}} {{$order->customer['email']}}
@else
{{ translate('no_customer_found') }}
@endif
@endsection admin-views/pos/order/invoice.blade.php000064400000014326150075320660014130 0ustar00

{{ getWebConfig('company_name') }}

{{ translate('phone') }} : {{ getWebConfig('company_phone') }}
{{ translate('order_ID') }} : {{ $order['id'] }}
{{ date('d/M/Y h:i a', strtotime($order['created_at'])) }}
@if($order->customer)
{{ translate('customer_name') }} : {{$order->customer['f_name'].' '.$order->customer['l_name']}}
@if ($order->customer->id !=0)
{{ translate('phone') }} : {{$order->customer['phone']}}
@endif
@endif
@php($sub_total=0) @php($total_tax=0) @php($total_dis_on_pro=0) @php($product_price=0) @php($total_product_price=0) @php($ext_discount=0) @php($coupon_discount=0) @foreach($order->details as $detail) @if($detail->product) @php($sub_total+=$amount) @php($total_product_price+=$product_price) @php($total_tax+=$detail['tax']) @endif @endforeach
{{ translate('qty') }} {{ translate('desc') }} {{ translate('price') }}
{{$detail['qty']}} {{ Str::limit($detail->product['name'], 200) }}
@if($detail->product->product_type == 'physical' && count(json_decode($detail['variation'],true))>0) {{ translate('variation') }} : @foreach(json_decode($detail['variation'],true) as $key1 =>$variation)
{{ translate($key1) }} : {{$variation}}
@endforeach @endif {{ translate('discount') }} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($detail['discount'],2)), currencyCode: getCurrencyCode()) }}
@php($amount=($detail['price']*$detail['qty'])-$detail['discount']) @php($product_price = $detail['price']*$detail['qty']) {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($amount,2)), currencyCode: getCurrencyCode()) }}
{{ translate('items_Price') }}: {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($sub_total,2)), currencyCode: getCurrencyCode()) }}
{{ translate('tax') }} / {{ translate('VAT') }}: {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($total_tax,2)), currencyCode: getCurrencyCode()) }}
{{ translate('subtotal') }}: {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($sub_total+$total_tax,2)), currencyCode: getCurrencyCode()) }}
{{ translate('extra_discount') }}: {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($ext_discount,2)), currencyCode: getCurrencyCode()) }}
{{ translate('coupon_discount') }}: {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($coupon_discount,2)), currencyCode: getCurrencyCode()) }}
{{ translate('total') }}: {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount:round($order->order_amount,2)), currencyCode: getCurrencyCode()) }}
{{ translate('paid_by') }}: {{ translate($order->payment_method) }}
"""{{ translate('thank_you') }}"""
admin-views/product-settings/inhouse-shop.blade.php000064400000040532150075320660016515 0ustar00@extends('layouts.back-end.app') @section('title', translate('inhouse_shop')) @section('content')

{{ translate('business_Setup') }}

@csrf
{{ translate('temporary_close') }}

*{{ translate('by_turning_on_the') }} "{{ translate('temporary_Close') }}” {{ translate('button_admin_can_pause_his_shop_activities_and_his_shop_will_be_shown_as') }} "{{ translate('temporary_Close') }}” {{ translate('in_the_system') }} . {{ translate('Customers_will_not_be_able_to_order_or_purchase_from_his_shop') }}

{{ translate('shop_details') }}

{{ translate('created_at') }} {{ date('d M, Y', strtotime($admin['updated_at']) ) }}

{{ translate('edit_shop') }}

{{ getWebConfig(name: 'company_name' ) }} {{ translate('shop') }}

{{ translate('visit_website') }}
@if ($minimumOrderAmountStatus || $free_delivery_status)
@csrf
{{ translate('shop_settings') }}
@if ($minimumOrderAmountStatus)
@endif @if($freeDeliveryStatus)
@endif
@endif
@endsection admin-views/product-settings/inhouse-shop-edit.blade.php000064400000040067150075320660017443 0ustar00@extends('layouts.back-end.app') @section('title', translate('inhouse_shop')) @section('content')

{{ translate('business_Setup') }}

@csrf
{{ translate('temporary_close') }}

*{{ translate('by_turning_on_the') }} "{{ translate('temporary_Close') }}” {{ translate('button_admin_can_pause_his_shop_activities_and_his_shop_will_be_shown_as') }} "{{ translate('temporary_Close') }}” {{ translate('in_the_system') }} . {{ translate('Customers_will_not_be_able_to_order_or_purchase_from_his_shop') }}

{{ translate('shop_details') }}

{{ translate('created_at') }} {{ date('d M, Y', strtotime($admin['updated_at']) ) }}

{{ translate('back') }}
@csrf
{{ translate('shop_cover_image') }} {{ THEME_RATIO[theme_root_path()]['Store cover Image'] }}
@if(theme_root_path() == "theme_aster")
{{translate('banner_image')}}
{{ translate('secondary_banner') }} {{ THEME_RATIO[theme_root_path()]['Store Banner Image'] }}
@endif @if(theme_root_path() == "theme_fashion")
{{ translate('offer_banner') }} ({{ translate('ratio').' '.'(7:1)' }})
@endif
@endsection admin-views/chatting/index.blade.php000064400000042130150075320660013462 0ustar00@extends('layouts.back-end.app') @section('title',translate('chatting_Page')) @section('content')

{{translate('chatting_List')}}

@if(isset($allChattingUsers) && count($allChattingUsers) > 0) @foreach($allChattingUsers as $key => $chatting) @if($chatting->user_id && $chatting->customer)
{{ $chatting->customer->f_name .' '. $chatting->customer->l_name }} {{ $chatting->created_at->diffForHumans() }}
{{ $chatting->customer->phone }}
@if(!$chatting->seen_by_admin && !($key == 0))
@endif
@elseif($chatting->delivery_man_id && $chatting->deliveryMan)
{{ $chatting->deliveryMan->f_name.' '.$chatting->deliveryMan->l_name }} {{ $chatting->created_at->diffForHumans() }}
{{ $chatting->deliveryMan->country_code.$chatting->deliveryMan->phone }}
@if(!$chatting->seen_by_admin && !($key == 0))
@endif
@endif @endforeach @endif
@if(isset($lastChatUser))
Image Description
{{ $lastChatUser['f_name'].' '.$lastChatUser['l_name'] }}
{{ $lastChatUser['country_code'] }} {{ $lastChatUser['phone'] }}
@include('admin-views.chatting.messages', ['lastChatUser'=>$lastChatUser, 'chattingMessages'=>$chattingMessages])
@csrf
@if(theme_root_path() == "default") @endif
@else

{{ translate('you_haven’t_any_conversation_yet') }}

@endif
@endsection @push('script') @endpush admin-views/chatting/messages.blade.php000064400000023324150075320660014166 0ustar00 @foreach($chattingMessages as $key => $message) @php($genTimeGap = $message->created_at) @if ($message->sent_by_customer || $message->sent_by_delivery_man)
Image Description
@if (json_decode($message['attachment']))
@foreach (json_decode($message['attachment']) as $index => $photo) @if($index < 3 || count(json_decode($message['attachment'], true)) < 5) @elseif($index == 3) @else @endif @endforeach
@endif @if($message->message)

{{$message->message}}

@endif
@else
@if (json_decode($message['attachment']))
@foreach (json_decode($message['attachment']) as $secondIndex => $photo) @if($secondIndex < 3 || count(json_decode($message['attachment'], true)) < 5) @elseif($secondIndex == 3) @else @endif @endforeach
@endif @if(!empty($message->message))

{{$message->message}}

@endif
@endif @endForeach admin-views/push-notification/index.blade.php000064400000055245150075320660015337 0ustar00@php use App\Utils\Helpers; @endphp @extends('layouts.back-end.app') @section('title', translate('push_Notification')) @section('content')

{{translate('push_notification_setup')}}

@include('admin-views.push-notification._push-notification-inline-menu')
{{translate('read_documentation')}}
@php($language = $language->value ?? null) @php($default_lang = 'en') @php($default_lang = json_decode($language)[0])
@csrf
@foreach ($customerMessages as $key=>$value )
@foreach (json_decode($language) as $lang) locale == $lang && $t->key == $value['key']) { $translate[$lang][$value['key']] = $t->value; } } } ?> @endforeach
@endforeach
@csrf
@foreach ($vendorMessages as $key=>$value )
@foreach (json_decode($language) as $lang) locale == $lang && $t->key == $value['key']) { $translate[$lang][$value['key']] = $t->value; } } } ?> @endforeach
@endforeach
@csrf
@foreach ($deliveryManMessages as $key=>$value )
@foreach (json_decode($language) as $lang) locale == $lang && $t->key == $value['key']) { $translate[$lang][$value['key']] = $t->value; } } } ?> @endforeach
@endforeach
@endsection @push('script') @endpush admin-views/push-notification/firebase-configuration-view.blade.php000064400000011342150075320660021613 0ustar00@extends('layouts.back-end.app') @section('title', translate('FCM_Settings')) @push('css_or_js') @endpush @section('content')

{{translate('push_Notification_Setup')}}

@include('admin-views.push-notification._push-notification-inline-menu')
{{translate('where_to_get_this_information?')}}
@csrf
@include('admin-views.push-notification.partials.instructions') @endsection @push('script') @endpush admin-views/push-notification/partials/instructions.blade.php000064400000007237150075320660020611 0ustar00 admin-views/push-notification/_push-notification-inline-menu.blade.php000064400000001351150075320660022235 0ustar00 admin-views/currency/edit.blade.php000064400000010324150075320660013331 0ustar00@extends('layouts.back-end.app') @section('title', translate('update_Currency')) @section('content')

{{translate('currency_update')}}

{{translate('update_Currency')}}
@csrf
@if($currencyModel=='multi_currency')
@endif
@endsection admin-views/currency/view.blade.php000064400000034347150075320660013371 0ustar00@extends('layouts.back-end.app') @section('title', translate('currency')) @section('content')

{{translate('system_Setup')}}

@include('admin-views.business-settings.system-settings-inline-menu')
{{translate('default-currency_setup')}}
@csrf
{{translate('add_currency')}}
@csrf
@if($currencyModel['value']=='multi_currency')
@endif
@if($currencyModel['value']=='multi_currency') @endif @foreach($currencies as $key =>$currency) @if($currencyModel['value']=='multi_currency') @endif @endforeach
{{translate('SL')}} {{translate('currency_name')}} {{translate('currency_symbol')}} {{translate('currency_code')}}{{translate('exchange_rate')}} ({{'1'.' '. getCurrencyCode(type: 'default').' '.'='.'?' }}) {{translate('status')}} {{translate('action')}}
{{$currencies->firstitem()+ $key }} {{$currency->name}} {{$currency->symbol}} {{$currency->code}}{{$currency->exchange_rate}} @if($default['value'] != $currency->id)
@csrf
@else @endif
@if($currency->code != 'USD') @else @endif
{{$currencies->links()}}
@if(count($currencies)==0) @include('layouts.back-end._empty-state',['text'=>'no_currency_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/attribute/edit.blade.php000064400000007301150075320660013503 0ustar00@extends('layouts.back-end.app') @section('title', translate('attribute')) @section('content')

{{ translate('update_attribute') }}

@csrf @foreach($language as $lang) locale == $lang && $translations->key == "name") { $translate[$lang]['name'] = $translations->value; } } } ?>
@endforeach
@endsection @push('script') @endpush admin-views/attribute/view.blade.php000064400000017236150075320660013540 0ustar00@extends('layouts.back-end.app') @section('title', translate('attribute')) @section('content')

{{ translate('attribute_Setup') }}

@csrf @foreach($language as $lang)
@endforeach
{{ translate('attribute_list') }} {{ $attributes->total() }}
@foreach($attributes as $key => $attribute) @endforeach
{{ translate('SL') }} {{ translate('attribute_Name') }} {{ translate('action') }}
{{$attributes->firstItem()+$key}} {{ translate($attribute['name'])}}
{!! $attributes->links() !!}
@if(count($attributes) == 0) @include('layouts.back-end._empty-state',['text'=>'no_attribute_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/partials/_top-selling-store.blade.php000064400000003715150075320660016125 0ustar00

{{translate('top_selling_store')}}

@if($topVendorByEarning) @foreach($topVendorByEarning as $key=> $vendor) @if(isset($vendor->seller->shop))
{{ $vendor->seller->shop['name'] ?? 'Not exist' }}
{{ setCurrencySymbol(amount: currencyConverter(amount: $vendor['total_earning'])) }}
@endif @endforeach @else

{{translate('no_Top_Selling_Products')}}

@endif
admin-views/partials/_most-rated-products.blade.php000064400000005054150075320660016454 0ustar00

{{translate('most_Popular_Products')}}

@if($mostRatedProducts)
@foreach($mostRatedProducts as $key => $product) @if(isset($product['id']))
{{$product->name}}{{translate('image')}}
{{isset($product['name']) ? substr($product->name, 0, 30) . (strlen($product->name)>20?'...':''):'not exists'}}
{{round($product['ratings_average'],2)}} ({{$product['reviews_count']}} {{translate('reviews')}})
@endif @endforeach
@else

{{translate('no_Top_Selling_Products')}}

@endif
admin-views/partials/_dashboard-wallet-stats.blade.php000064400000007502150075320660017105 0ustar00

{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['inhouse_earning']), currencyCode: getCurrencyCode())}}

{{translate('in-house_earning')}}

{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['commission_earned']), currencyCode: getCurrencyCode())}}

{{translate('commission_earned')}}

{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['delivery_charge_earned']), currencyCode: getCurrencyCode())}}

{{translate('delivery_charge_earned')}}

{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_tax_collected']), currencyCode: getCurrencyCode())}}

{{translate('total_tax_collected')}}

{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['pending_amount']), currencyCode: getCurrencyCode())}}

{{translate('pending_amount')}}
admin-views/partials/_top-delivery-man.blade.php000064400000004126150075320660015727 0ustar00

{{translate('top_Delivery_Man')}}

@if($topRatedDeliveryMan)
@foreach($topRatedDeliveryMan as $key=> $deliveryMan) @if(isset($deliveryMan['id']))
{{Str::limit($deliveryMan['f_name'].' '.$deliveryMan['l_name'], 25)}}
{{translate('order_delivered')}} :
{{$deliveryMan['delivered_orders_count']}}
@endif @endforeach
@else

{{translate('no_data_found').'!'}}

@endif
admin-views/partials/_dashboard-order-status.blade.php000064400000013122150075320660017110 0ustar00
{{translate('delivered')}}
{{$data['delivered']}}
{{translate('canceled')}}
{{$data['canceled']}}
{{translate('returned')}}
{{$data['returned']}}
{{translate('failed_to_delivery')}}
{{$data['failed']}}
admin-views/partials/_search-result.blade.php000064400000000335150075320660015312 0ustar00 admin-views/partials/_top-store-by-order.blade.php000064400000003177150075320660016215 0ustar00

{{translate('most_Popular_Stores')}}

@if($top_store_by_order_received)
@foreach($top_store_by_order_received as $key=>$item) @if(isset($item->seller->shop)) @php($shop=$item->seller->shop)
{{$shop['name']??'Not exist'}}
{{$item['count']}}
@endif @endforeach
@else

{{translate('no_Top_Selling_Products')}}

@endif
admin-views/partials/_search-product.blade.php000064400000003073150075320660015456 0ustar00@if (count($products) > 0) @foreach ($products as $key => $product)
{{$product['name']}}
{{translate('category').' '.':'.' '}}{{isset($product->category) ? $product->category->name : translate('category_not_found') }}
{{translate('brand').' '.':'.' '}}{{isset($product->brand) ? $product->brand->name : translate('brands_not_found') }}
@if ($product->added_by == "seller")
{{translate('shop').' '.':'.' '}}{{isset($product->seller) ? $product->seller->shop->name : translate('shop_not_found') }}
@else
{{translate('shop').' '.':'.' '}}{{$web_config['name']->value}}
@endif
@endforeach @else
{{ translate('No_Product_Found') }}
@endif admin-views/partials/_top-customer.blade.php000064400000003323150075320660015172 0ustar00

{{translate('top_customer')}}

@if($top_customer)
@foreach($top_customer as $key=>$item) @if(isset($item->customer))
{{$item->customer['f_name']??translate('not_exist')}}
{{translate('orders')}} :
{{$item['count']}}
@endif @endforeach
@else

{{translate('no_Top_Selling_Products')}}

@endif
admin-views/partials/_top-selling-products.blade.php000064400000004140150075320660016625 0ustar00

{{translate('top_selling_products')}}

@if(isset($topSellProduct)) @foreach($topSellProduct as $key => $product) @if(isset($product['id']))
{{ $product['name'].'_'.translate('image') }}
{{substr($product['name'],0,20)}} {{strlen($product['name'])>20?'...':''}}
{{translate('sold')}} :
{{$product['order_details_count']}}
@endif @endforeach @else

{{translate('no_Top_Selling_Products')}}

@endif
admin-views/deal/flash-index.blade.php000064400000070375150075320660013675 0ustar00@php use Carbon\Carbon; use Illuminate\Support\Facades\Session @endphp @extends('layouts.back-end.app') @section('title', translate('flash_Deal')) @section('content') @php($direction = Session::get('direction'))

{{translate('flash_deals')}}

@csrf @php($language = getWebConfig(name:'pnc_language')) @php($defaultLanguage = 'en') @php($defaultLanguage = $language[0])
@foreach($language as $lang)
@endforeach
{{translate('banner_image')}}
( {{translate('ratio').' '.'5:1'}} )
{{ translate('flash_deal_table')}} {{ $flashDeals->total() }}
@foreach($flashDeals as $key => $deal) @endforeach
{{ translate('SL')}} {{ translate('title')}} {{ translate('duration')}} {{ translate('status')}} {{ translate('active_products')}} {{ translate('publish')}} {{ translate('action')}}
{{$flashDeals->firstItem()+ $key }} {{$deal['title']}} {{date('d-M-y',strtotime($deal['start_date'])).'-'.' '}} {{date('d-M-y',strtotime($deal['end_date']))}} @if(Carbon::parse($deal['end_date'])->endOfDay()->isPast()) {{ translate('expired')}} @else {{ translate('active')}} @endif {{ $deal->products_count }}
@csrf
{{$flashDeals->links()}}
@if(count($flashDeals)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/deal/add-product.blade.php000064400000014051150075320660013666 0ustar00@extends('layouts.back-end.app') @section('title', translate('deal_Product')) @section('content')

{{translate('add_new_product')}}

{{$deal['title']}}

@csrf
{{ translate('product_table')}} {{ $dealProducts->total() }}
@foreach($dealProducts as $key => $product) @endforeach
{{ translate('SL')}} {{ translate('name')}} {{ translate('price')}} {{ translate('action')}}
{{$dealProducts->firstitem() + $key}} {{$product['name']}} {{usdToDefaultCurrency(amount: $product['unit_price'])}}
{!! $dealProducts->links() !!}
@endsection @push('script') @endpush admin-views/deal/day-index.blade.php000064400000031036150075320660013344 0ustar00@extends('layouts.back-end.app') @section('title', translate('deal_Of_The_Day')) @push('css_or_js') @endpush @section('content')

{{translate('deal_of_the_day')}}

@csrf @php($language = getWebConfig(name:'pnc_language')) @php($defaultLanguage = 'en') @php($defaultLanguage = $language[0])
@foreach($language as $lang)
@endforeach
{{ translate('deal_of_the_day')}} {{ $deals->total() }}
@foreach($deals as $k=>$deal) @endforeach
{{ translate('SL')}} {{ translate('title')}} {{ translate('product_info')}} {{ translate('status')}} {{ translate('action')}}
{{$deals->firstItem()+ $k}} {{$deal['title']}} {{ isset($deal->product) ? $deal->product->name : translate("not_selected" )}}
@csrf
{{$deals->links()}}
@if(count($deals)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/deal/flash-update.blade.php000064400000016010150075320660014032 0ustar00@extends('layouts.back-end.app') @section('title', translate('flash_Deal_Update')) @section('content')

{{translate('flash_deals_update')}}

@csrf @php($language = getWebConfig(name:'pnc_language')) @php($defaultLanguage = 'en') @php($defaultLanguage = $language[0])
@foreach($language as $lang) locale == $lang && $t->key == "title") { $translate[$lang]['title'] = $t->value; } } } ?>
@endforeach
{{translate('banner_image')}}
( {{translate('ratio').' '.'5:1'}})
@endsection @push('script') @endpush admin-views/deal/feature-update.blade.php000064400000012724150075320660014400 0ustar00@extends('layouts.back-end.app') @section('title', translate('feature_Deal_Update')) @section('content')

{{translate('update_feature_deal')}}

@csrf @php($language = getWebConfig(name:'pnc_language')) @php($defaultLanguage = 'en') @php($defaultLanguage = $language[0])
@foreach($language as $lang) locale == $lang && $t->key == "title") { $translate[$lang]['title'] = $t->value; } } } ?>
@endforeach
@endsection @push('script') @endpush admin-views/deal/day-update.blade.php000064400000014451150075320660013521 0ustar00@extends('layouts.back-end.app') @section('title', translate('deal_Update')) @section('content')

{{translate('update_Deal_of_The_Day')}}

@csrf @php($language = getWebConfig(name:'pnc_language')) @php($defaultLanguage = 'en') @php($defaultLanguage = $language[0])
@foreach($language as $lang) locale == $lang && $t->key == "title") { $translate[$lang]['title'] = $t->value; } } } ?>
@endforeach
@endsection @push('script') @endpush admin-views/deal/feature-index.blade.php000064400000065434150075320660014233 0ustar00@php use Carbon\Carbon; use Illuminate\Support\Facades\Session; @endphp @extends('layouts.back-end.app') @section('title', translate('feature_Deal')) @section('content') @php($direction = Session::get('direction'))

{{ translate('feature_deal') }}

@csrf @php($language = getWebConfig(name:'pnc_language')) @php($defaultLanguage = 'en') @php($defaultLanguage = $language[0])
@foreach($language as $lang)
@endforeach
{{ translate('feature_deal_table') }} {{ $flashDeals->total() }}
@foreach($flashDeals as $key => $deal) @endforeach
{{ translate('SL') }} {{ translate('title') }} {{ translate('start_Date') }} {{ translate('end_Date') }} {{ translate('active') }} / {{ translate('expired') }} {{ translate('status') }} {{ translate('action') }}
{{$key+1}} {{$deal['title']}} {{date('d-M-y',strtotime($deal['start_date']))}} {{date('d-M-y',strtotime($deal['end_date']))}} @if(Carbon::parse($deal['end_date'])->endOfDay()->isPast()) {{ translate('expired') }} @else {{ translate('active') }} @endif
@csrf
{{$flashDeals->links()}}
@if(count($flashDeals)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/product/bulk-import.blade.php000064400000007146150075320660014507 0ustar00@extends('layouts.back-end.app') @section('title', translate('product_Bulk_Import')) @section('content')

{{translate('bulk_Import')}}

{{translate('instructions')}} :

{{ translate('1') }}. {{translate('download_the_format_file_and_fill_it_with_proper_data.')}}

{{ translate('2') }}. {{translate('you_can_download_the_example_file_to_understand_how_the_data_must_be_filled.')}}

{{ translate('3') }}. {{translate('once_you_have_downloaded_and_filled_the_format_file')}}, {{translate('upload_it_in_the_form_below_and_submit.')}}

4. {{translate('after_uploading_products_you_need_to_edit_them_and_set_product_images_and_choices.')}}

5. {{translate('you_can_get_brand_and_category_id_from_their_list_please_input_the_right_ids.')}}

6. {{translate('you_can_upload_your_product_images_in_product_folder_from_gallery_and_copy_image_path.')}}

@csrf

{{translate("do_not_have_the_template")}} ?

{{translate('download_here')}}
@endsection admin-views/product/updated-product-list.blade.php000064400000014574150075320660016322 0ustar00@extends('layouts.back-end.app') @section('title', translate('updated_product_list')) @section('content')

{{ translate('update_product') }}

{{ translate('product_table') }} {{ $products->total() }}
@foreach($products as $key=>$product) @endforeach
{{ translate('SL') }} {{ translate('product Name') }} {{ translate('previous_shipping_cost') }} {{ translate('new_shipping_cost') }} {{ translate('action') }}
{{ $products->firstItem()+$key}} {{ Str::limit($product['name'],20) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product['shipping_cost']), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product['temp_shipping_cost']), currencyCode: getCurrencyCode()) }}
{{ $products->links() }}
@if(count($products)==0) @include('layouts.back-end._empty-state',['text'=>'no_product_found'],['image'=>'default']) @endif
@endsection admin-views/product/partials/_sku_combinations.blade.php000064400000006615150075320660017567 0ustar00@if(count($combinations[0]) > 0) @php $serial = 1; @endphp @foreach ($combinations as $key => $combination) @php $sku = ''; foreach (explode(' ', $productName) as $value) { $sku .= substr($value, 0, 1); } $str = ''; foreach ($combination as $index => $item){ if($index > 0 ){ $str .= '-'.str_replace(' ', '', $item); $sku .='-'.str_replace(' ', '', $item); } else{ if($colorsActive == 1){ $color_name = \App\Models\Color::where('code', $item)->first()->name; $str .= $color_name; $sku .='-'.$color_name; } else{ $str .= str_replace(' ', '', $item); $sku .='-'.str_replace(' ', '', $item); } } } @endphp @if(strlen($str) > 0) @endif @endforeach
{{ $serial++ }}
@endif admin-views/product/partials/_update_stock.blade.php000064400000001651150075320660016700 0ustar00

{{ translate('product_price_&_stock') }}

@include('admin-views.product.partials._edit_sku_combinations', ['combinations'=>json_decode($product['variation'],true)])
current_stock }} step="1" placeholder="{{ translate('quantity') }}" name="current_stock" class="form-control" required>

admin-views/product/partials/_choices.blade.php000064400000001440150075320660015624 0ustar00@foreach($choice_options as $key=>$choice)
@endforeach admin-views/product/partials/_edit_sku_combinations.blade.php000064400000005120150075320660020562 0ustar00@if(count($combinations) > 0) @php $serial = 1; @endphp @foreach ($combinations as $key => $combination) @endforeach
{{ $serial++ }}
@endif admin-views/product/edit.blade.php000064400000241545150075320660013172 0ustar00@extends('layouts.back-end.app') @section('title', translate(request('product-gallery')==1 ?'product_Add' : 'product_Edit')) @push('css_or_js') @endpush @section('content')

{{ translate(request('product-gallery')==1 ?'product_Add' : 'product_Edit') }}

@csrf
@foreach($languages as $language) locale == $language && $translation->key == "name") { $translate[$language]['name'] = $translation->value; } if ($translation->locale == $language && $translation->key == "description") { $translate[$language]['description'] = $translation->value; } } } ?>
@endforeach

{{ translate('general_setup') }}

@if($brandSetting)
@endif
{{ translate('file_type').': jpg, jpeg, png, gif, zip, pdf' }}

{{ translate('Pricing_&_others') }}

purchase_price) }} required>
unit_price) }} required>
minimum_order_qty }} step="1" placeholder="{{ translate('minimum_order_quantity') }}" name="minimum_order_qty" class="form-control" required>
current_stock }} step="1" placeholder="{{ translate('quantity') }}" name="current_stock" id="current_stock" class="form-control" required>
tax ?? 0 }} step="0.01" placeholder="{{ translate('tax') }}" name="tax" id="tax" class="form-control" required>

{{ translate('product_variation_setup') }}

@include('admin-views.product.partials._choices',['choice_no'=>json_decode($product['attributes']),'choice_options'=>json_decode($product['choice_options'],true)])
@include('admin-views.product.partials._edit_sku_combinations',['combinations'=>json_decode($product['variation'],true)])
{{ THEME_RATIO[theme_root_path()]['Product Image'] }}
@if (File::exists(base_path('storage/app/public/product/thumbnail/'. $product->thumbnail))) @else @endif

{{ translate('Upload_Image') }}

{{ translate('image_format') }} : {{ "Jpg, png, jpeg, webp " }}
{{ translate('image_size') }} : {{ translate('max') }} {{ "2 MB" }}

{{ translate('must_upload_colour_wise_images_first._Colour_is_shown_in_the_image_section_top_right.') }}

{{ THEME_RATIO[theme_root_path()]['Product Image'] }}

{{ translate('upload_additional_product_images') }}

@if(count($product->colors) == 0) @foreach (json_decode($product->images) as $key => $photo) @php($unique_id = rand(1111,9999))
@if(request('product-gallery')) @else @endif
@if(request('product-gallery')) @endif

{{ translate('Upload_Image') }}

@endforeach @else @if($product->color_image) @foreach (json_decode($product->color_image) as $photo) @if($photo->color == null) @php($unique_id = rand(1111,9999))
@if(request('product-gallery')) @else @endif
@if(request('product-gallery')) @endif

{{ translate('Upload_Image') }}

@endif @endforeach @else @foreach (json_decode($product->images) as $key => $photo) @php($unique_id = rand(1111,9999))
@if(request('product-gallery')) @else @endif
@if(request('product-gallery')) @endif

{{ translate('Upload_Image') }}

@endforeach @endif @endif

{{ translate('Upload_Image') }}

{{ translate('product_video') }}

( {{ translate('optional_please_provide_embed_link_not_direct_link') }}. )

{{ translate('seo_section') }}

{{ THEME_RATIO[theme_root_path()]['Meta Thumbnail'] }}
@if (File::exists(base_path('storage/app/public/product/meta/'. $product['meta_image']))) @else @endif

{{ translate('Upload_Image') }}

@if(request('product-gallery')) @endif
@endsection @push('script') @endpush admin-views/product/view.blade.php000064400000131765150075320660013221 0ustar00@extends('layouts.back-end.app') @section('title', translate('product_Preview')) @section('content')

{{ translate('product_details') }}

@if ($productActive) {{ translate('view_live') }} @endif
@if($product->digital_file_ready && file_exists(base_path('storage/app/public/product/digital-product/'.$product->digital_file_ready))) {{ translate('download') }} @endif
@php($languages = getWebConfig(name:'pnc_language')) @php($defaultLanguage = 'en') @php($defaultLanguage = $languages[0])
@if($product['added_by'] == 'seller' && ($product['request_status'] == 0 || $product['request_status'] == 1))
@if($product['request_status'] == 0) @endif
@endif @if($product['added_by'] == 'seller' && ($product['request_status'] == 2))
{{translate('status').' : '}} {{translate('rejected')}}
@endif
@if ($product->product_type == 'physical' && !empty($product->color_image) && count(json_decode($product->color_image))>0) @foreach (json_decode($product->color_image) as $colorImageKey => $photo) @if( $colorImageKey < 3 || count(json_decode($product->color_image, true)) < 5) @elseif($colorImageKey == 3)
+{{ (count(json_decode($product->color_image, true)) - $colorImageKey) + 1 }}
@else @endif @endforeach @else @foreach (json_decode($product->images) as $imageKey => $photo) @if($imageKey < 3 || count(json_decode($product->images, true)) < 5) @elseif($imageKey == 3)
+{{ (count(json_decode($product->images, true)) - $imageKey) + 1 }}
@else @endif @endforeach @endif
{{ count($product->orderDetails) }} {{ translate('orders') }}
{{ count($product->rating)>0 ? number_format($product->rating[0]->average, 2, '.', ' '):0 }}
{{ translate('rating') }}
    @php($total = $product->reviews->count())
  • @php($five = getRatingCount($product['id'], 5)) {{ translate('5') }} {{ translate('star') }}
    {{ $five }}
  • @php($four=getRatingCount($product['id'],4)) {{ translate('4') }} {{ translate('star') }}
    {{ $four }}
  • @php($three=getRatingCount($product['id'],3)) {{ translate('3') }} {{ translate('star') }}
    {{ $three }}
  • @php($two=getRatingCount($product['id'],2)) {{ translate('2') }} {{ translate('star') }}
    {{ $two }}
  • @php($one=getRatingCount($product['id'],1)) {{ translate('1') }} {{ translate('star') }}
    {{ $one }}
{{ $product->reviews->whereNotNull('comment')->count() }} {{ translate('reviews') }}
@foreach($languages as $language) locale == $language && $translation->key == "name") { $translate[$language]['name'] = $translation->value; } if ($translation->locale == $language && $translation->key == "description") { $translate[$language]['description'] = $translation->value; } } } ?>

{{ $translate[$language]['name']??$product['name']}}

{!! $translate[$language]['description'] ?? $product['details'] !!}
@endforeach

{{ translate('total_sold') }} :

{{ $product['qtySum'] }}

{{ translate('total_sold_amount') }} :

{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: ($product['priceSum'] - $product['discountSum']))) }}

{{ translate('general_information') }}

{{ translate('brand') }} : {{isset($product->brand) ? $product->brand->default_name : translate('brand_not_found') }}
{{ translate('category') }} : {{isset($product->category) ? $product->category->default_name : translate('category_not_found') }}
{{ translate('product_type') }} : {{ translate($product->product_type) }}
@if($product->product_type == 'physical')
{{ translate('product_unit') }} : {{ $product['unit']}}
{{ translate('current_Stock') }} : {{ $product->current_stock}}
@endif
{{ translate('product_SKU') }} : {{ $product->code}}

{{ translate('price_information') }}

{{ translate('unit_price') }} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product->unit_price), currencyCode: getCurrencyCode()) }}
{{ translate('tax') }} : @if ($product->tax_type =='percent') {{ $product->tax}}% ({{ $product->tax_model}}) @else {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product->tax)) }} ({{ $product->tax_model }}) @endif
@if($product->product_type == 'physical')
{{ translate('shipping_cost') }} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product->shipping_cost)) }} @if ($product->multiply_qty == 1) ({{ translate('multiply_with_quantity') }}) @endif
@endif @if($product->discount > 0)
{{ translate('discount') }} : @if ($product->discount_type == 'percent') {{ $product->discount }}% @else {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product->discount), currencyCode: getCurrencyCode()) }} @endif
@endif
@if(count($product->tags)>0)

{{ translate('tags') }}

@foreach ($product->tags as $key=>$tag) {{ $tag['tag'] }} @if ($key === (count($product->tags)-1)) @break @endif , @endforeach
@endif
@if(!empty($product['variation']) && count(json_decode($product['variation'])) >0)
@foreach(json_decode($product['variation']) as $key=>$value) @endforeach
{{ translate('SKU') }} {{ translate('variation_wise_price') }} {{ translate('stock') }}
{{$value->sku}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $value->price), currencyCode: getCurrencyCode())}} {{($value->qty)}}
@endif
{{translate('product_SEO_&_meta_data')}}
{{$product['meta_title'] ?? translate('meta_title_not_found').' '.'!'}}

{{$product['meta_description'] ?? translate('meta_description_not_found').' '.'!'}}

@if($product['meta_image']) @endif
{{translate('product_video')}}
@if ($product->denied_note && $product['request_status'] == 2)
{{translate('reject_reason')}}
{{ $product->denied_note}}
@endif
@foreach($reviews as $key=>$review) @if(isset($review->customer)) @endif @endforeach
{{ translate('SL') }} {{ translate('reviewer') }} {{ translate('rating') }} {{ translate('review') }} {{ translate('date') }} {{ translate('action') }}
{{ $reviews->firstItem()+$key}}
{{ $review->customer['f_name']." ".$review->customer['l_name']}} {{ $review->customer->email ?? "" }}
{{ $review->rating }}

{{ $review['comment']}}

@if(json_decode($review->attachment)) @foreach (json_decode($review->attachment) as $img) {{translate('review_image')}} @endforeach @endif
{{date('d M Y H:i:s',strtotime($review['updated_at'])) }}
{!! $reviews->links() !!}
@if(count($reviews)==0) @include('layouts.back-end._empty-state',['text'=>'no_review_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/product/barcode.blade.php000064400000013627150075320660013642 0ustar00@extends('layouts.back-end.app') @section('title', $product->name . ' '.translate('barcode').' ' . date('Y/m/d')) @push('css_or_js') @endpush @section('content')

{{ translate('generate_Barcode') }}

{{ translate('code') }} {{ translate('name') }} {{ translate('quantity') }} {{ translate('action') }}
@if ($product->code) {{$product->code}} @else {{ translate('update_your_product_code') }} @endif {{ Str::limit($product->name, 20) }} {{ translate('maximum_quantity_270') }}
{{ translate('reset') }}

{{ translate("this_page_is_for_A4_size_page_printer_so_it_will_not_be_visible_in_smaller_devices.") }}

@endsection admin-views/product/add-new.blade.php000064400000145512150075320660013561 0ustar00@extends('layouts.back-end.app') @section('title', translate('product_Add')) @push('css_or_js') @endpush @section('content')

{{ translate('add_New_Product') }}

@csrf
{{translate('add_info_from_gallery')}}
@foreach ($languages as $lang)
@endforeach

{{ translate('general_setup') }}

@if($brandSetting)
@endif
{{ translate('file_type') }}: {{ "jpg, jpeg, png, gif, zip, pdf" }}

{{ translate('pricing_&_others') }}

{{ translate('product_variation_setup') }}

{{ THEME_RATIO[theme_root_path()]['Product Image'] }}

{{ translate('Upload_Image') }}

{{ translate('image_format') }} : {{ "Jpg, png, jpeg, webp," }}
{{ translate('image_size') }} : {{ translate('max') }} {{ "2 MB" }}

{{ THEME_RATIO[theme_root_path()]['Product Image'] }}

{{ translate('must_upload_colour_wise_images_first._Colour_is_shown_in_the_image_section_top_right') }} .

{{ THEME_RATIO[theme_root_path()]['Product Image'] }}

{{ translate('upload_additional_product_images') }}

{{ translate('Upload_Image') }}

{{ translate('product_video') }}

({{ translate('optional_please_provide_embed_link_not_direct_link') }}.)

{{ translate('seo_section') }}

{{ THEME_RATIO[theme_root_path()]['Meta Thumbnail'] }}

{{ translate('Upload_Image') }}

@endsection @push('script') @endpush admin-views/product/product-gallery.blade.php000064400000036050150075320660015353 0ustar00@extends('layouts.back-end.app') @section('title', translate('product_gallery')) @section('content')

{{translate('product_gallery')}}

{{$products->total()}}
@foreach($products as $product)

{{ translate('general_information') }}

{{ translate('brand') }} : {{isset($product->brand) ? $product->brand->default_name : translate('brand_not_found') }}
{{ translate('category') }} : {{isset($product->category) ? $product->category->default_name : translate('category_not_found') }}
{{ translate('product_type') }} : {{ translate($product->product_type) }}
@if($product->product_type == 'physical')
{{ translate('product_unit') }} : {{ $product['unit']}}
{{ translate('current_Stock') }} : {{ $product->current_stock}}
@endif
{{ translate('product_SKU') }} : {{ $product->code}}
@if ($product->product_type == 'physical' && count(json_decode($product->choice_options)) >0 || count(json_decode($product->colors)) >0 )

{{ translate('available_variations') }}

@if (json_decode($product->choice_options) != null) @foreach (json_decode($product->choice_options) as $key => $value)
@if (array_filter($value->options) != null) {{ translate($value->title) }} : @foreach ($value->options as $index => $option) {{ $option }} @if ($index === array_key_last(($value->options))) @break @endif , @endforeach @endif
@endforeach @endif @if (isset($product['colorsName']))
{{ translate('color') }} : @foreach ($product['colorsName'] as $key => $color) {{ $color }} @if ($key === array_key_last($product['colorsName'])) @break @endif , @endforeach
@endif
@endif @if(count($product->tags)>0)

{{ translate('tags') }}

@foreach ($product->tags as $key=>$tag) {{ $tag['tag'] }} @if ($key === (count($product->tags)-1)) @break @endif , @endforeach
@endif
{!! $product['details'] !!}
@endforeach @if(count($products) <= 0) @include('layouts.back-end._empty-state',['text'=>'no_product_found'],['image'=>'default']) @endif
{{ $products->links() }}
@endsection admin-views/product/list.blade.php000064400000051174150075320660013215 0ustar00@extends('layouts.back-end.app') @section('title', translate('product_List')) @section('content')

@if($type == 'in_house') {{ translate('in_House_Product_List') }} @elseif($type == 'seller') {{ translate('vendor_Product_List') }} @endif {{ $products->total() }}

{{ translate('filter_Products') }}

@if (request('type') == 'seller')
@endif
{{ translate('reset') }}
@foreach($products as $key=>$product) @endforeach
{{ translate('SL') }} {{ translate('product Name') }} {{ translate('product Type') }} {{ translate('unit_price') }} {{ translate('show_as_featured') }} {{ translate('active_status') }} {{ translate('action') }}
{{ $products->firstItem()+$key}} {{ Str::limit($product['name'], 20) }} {{ translate(str_replace('_',' ',$product['product_type'])) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product['unit_price']), currencyCode: getCurrencyCode()) }} @php($productName = str_replace("'",'`',$product['name']))
@csrf
@csrf
@csrf @method('delete')
{{ $products->links() }}
@if(count($products)==0) @include('layouts.back-end._empty-state',['text'=>'no_product_found'],['image'=>'default']) @endif
@endsection admin-views/product/stock-limit-list.blade.php000064400000032414150075320660015446 0ustar00@extends('layouts.back-end.app') @section('title', translate('stock_limit_products')) @section('content')

{{ translate('limited_Stocked_Products_List') }} {{ $products->total() }}

{{ translate('the_products_are_shown_in_this_list,_which_quantity_is_below') }} {{ $stockLimit }}

@foreach($products as $key=>$product) @endforeach
{{ translate('SL') }} {{ translate('product_Name') }} {{ translate('unit_price') }} {{ translate('quantity') }} {{ translate('orders') }} {{ translate('active_status') }} {{ translate('action') }}
{{ $products->firstItem()+$key}} {{ Str::limit($product['name'], 20) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product['unit_price']), currencyCode: getCurrencyCode()) }}
{{ $product['current_stock']}}
{{($product['order_details_count'])}} @if($product->request_status != 2 )
@csrf
@endif
@csrf @method('delete')
{{ $products->links() }}
@if(count($products)==0) @include('layouts.back-end._empty-state',['text'=>'no_product_found'],['image'=>'default']) @endif
@endsection admin-views/customer/loyalty/report.blade.php000064400000025571150075320660015435 0ustar00@extends('layouts.back-end.app') @section('title', translate('customer_loyalty_point_report')) @section('content')

{{translate('customer_loyalty_point_report')}}

{{translate('filter_options')}}

@php $transaction_status=request()->get('transaction_type'); @endphp

{{translate('summary')}}

@php $credit = $data[0]->total_credit??0; $debit = $data[0]->total_debit??0; $balance = $credit - $debit; @endphp
{{translate('debit')}}
{{(int)($debit)}}
{{translate('credit')}}
{{(int)$credit}}
{{translate('balance')}}
{{(int)$balance}}

{{translate('transactions')}} {{$transactions->total()}}

@foreach($transactions as $key=>$transaction) @endforeach
{{translate('SL')}} {{translate('transaction_ID')}} {{translate('customer')}} {{translate('credit')}} {{translate('debit')}} {{translate('balance')}} {{translate('transaction_type')}} {{translate('reference')}} {{translate('created_at')}}
{{$key+$transactions->firstItem()}} {{$transaction['transaction_id']}} {{Str::limit($transaction->user?$transaction->user->f_name.' '.$transaction->user->l_name:translate('not_found'),20)}} {{$transaction['credit']}} {{$transaction['debit']}} {{$transaction['balance']}} {{translate($transaction['transaction_type'])}} {{$transaction['reference']}} {{date('Y/m/d '.config('timeformat'), strtotime($transaction['created_at']))}}
{!!$transactions->links()!!}
@if(count($transactions)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
@endsection admin-views/customer/customer-settings.blade.php000064400000063523150075320660016123 0ustar00@php use App\Utils\Convert; @endphp @extends('layouts.back-end.app') @section('title', translate('customer_settings')) @section('content')

{{translate('business_setup')}}

@include('admin-views.business-settings.business-setup-inline-menu')
@csrf
@php($walletStatus =getWebConfig(name: 'wallet_status'))
{{translate('customer_wallet')}}
@php($loyaltyPointStatus = getWebConfig(name: 'loyalty_point_status'))
{{translate('customer_Loyalty_Point')}}
@php($refEarningStatus = getWebConfig(name: 'ref_earning_status'))
{{translate('customer_referral_earning')}}
{{translate('customer_Wallet_Settings')}}
@php($walletAddRefund = getWebConfig(name:'wallet_add_refund'))
{{translate('add_Refund_Amount_to_Wallet')}}
@php($addFundsToWallet=getWebConfig(name:'add_funds_to_wallet'))
{{translate('add_Fund_to_Wallet')}}
@php($minimumAddFundAmount=getWebConfig(name:'minimum_add_fund_amount'))
@php($maximumAddFundAmount=getWebConfig(name:'maximum_add_fund_amount'))
{{translate('customer_Loyalty_Point_Settings')}}
@php($loyaltyPointExchangeRate=getWebConfig(name:'loyalty_point_exchange_rate'))
@php($loyaltyPointItemPurchasePoint=getWebConfig(name:'loyalty_point_item_purchase_point'))
@php($loyaltyPointMinimumPoint=getWebConfig(name:'loyalty_point_minimum_point'))
{{translate('customer_Referrer_Settings')}}
@php($refEarningExchangeRate = getWebConfig(name:'ref_earning_exchange_rate'))
@endsection @push('script') @endpush admin-views/customer/subscriber-list.blade.php000064400000010144150075320660015527 0ustar00@extends('layouts.back-end.app') @section('title', translate('subscriber_list')) @section('content')

{{translate('subscriber_list')}} {{ $subscription_list->total() }}

@foreach ($subscription_list as $key=>$item) @endforeach
{{ translate('SL')}} {{ translate('email')}} {{ translate('subscription_date')}}
{{$subscription_list->firstItem()+$key}} {{$item->email}} {{date('d M Y, h:i A',strtotime($item->created_at))}}
{{$subscription_list->links()}}
@if(count($subscription_list)==0) @include('layouts.back-end._empty-state',['text'=>'no_subscriber_found'],['image'=>'default']) @endif
@endsection admin-views/customer/customer-view.blade.php000064400000057277150075320660015246 0ustar00@extends('layouts.back-end.app') @section('title', translate('customer_Details')) @push('css_or_js') @endpush @section('content')

{{translate('customer_details')}}

{{translate('customer').' # '.$customer['id']}}

{{translate('image')}}
{{$customer['f_name'].' '.$customer['l_name']}}
  • {{translate('contact')}} : {{!empty($customer['phone']) ? $customer['phone'] : translate('no_data_found')}}
  • {{translate('email')}} : {{$customer['email'] ?? translate('no_data_found')}}
  • {{translate('joined_date')}} : {{date('d M Y',strtotime($customer['created_at']))}}
@if(count($customer->addresses)>0)

{{translate('saved_address')}}

@else @endif
{{translate('orders')}} {{$orders->total()}}
@foreach($orders as $key=>$order) @endforeach
{{translate('sl')}} {{translate('order_ID')}} {{translate('total')}} {{translate('order_Status')}} {{translate('action')}}
{{$orders->firstItem()+$key}} {{$order['id']}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order['order_amount']))}}
@if($order->payment_status=='paid') {{translate('paid')}} @else {{translate('unpaid')}} @endif
@if($order['order_status']=='pending') {{translate($order['order_status'])}} @elseif($order['order_status']=='processing' || $order['order_status']=='out_for_delivery') {{str_replace('_',' ',$order['order_status'] == 'processing' ? translate('packaging'):translate($order['order_status']))}} @elseif($order['order_status']=='confirmed') {{translate($order['order_status'])}} @elseif($order['order_status']=='failed') {{translate('failed_to_deliver')}} @elseif($order['order_status']=='delivered') {{translate($order['order_status'])}} @else {{translate($order['order_status'])}} @endif
{!! $orders->links() !!}
@if(count($orders)==0) @include('layouts.back-end._empty-state',['text'=>'no_order_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/customer/list.blade.php000064400000023026150075320660013371 0ustar00@php use Illuminate\Support\Str; @endphp @extends('layouts.back-end.app') @section('title', translate('customer_List')) @section('content')

{{translate('customer_list')}} {{$customers->total()}}

@foreach($customers as $key=>$customer) @endforeach
{{translate('SL')}} {{translate('customer_name')}} {{translate('contact_info')}} {{translate('total_Order')}} {{translate('block')}} / {{translate('unblock')}} {{translate('action')}}
{{$customers->firstItem()+$key}} {{Str::limit($customer['f_name']." ".$customer['l_name'],20)}} {{$customer->phone}} @if($customer['email'] == 'walking@customer.com')
{{ translate('default') }}
@else
@csrf
@endif
@if($customer['id'] != '0') @endif
@csrf @method('delete')
{!! $customers->links() !!}
@if(count($customers)==0) @include('layouts.back-end._empty-state',['text'=>'no_customer_found'],['image'=>'default']) @endif
@endsection admin-views/customer/wallet/wallet-bonus-edit.blade.php000064400000026423150075320660017251 0ustar00@extends('layouts.back-end.app') @section('title',translate('customer_wallet_bonus_edit')) @section('content')

{{translate('wallet_bonus_edit')}}

{{translate('how_it_works')}}
@csrf
{{translate('back')}}
@endsection @push('script') @endpush admin-views/customer/wallet/report.blade.php000064400000043325150075320660015225 0ustar00@extends('layouts.back-end.app') @section('title',translate('customer_wallet')) @section('content')

{{translate('wallet')}}

@if($customerStatus == 1) @endif

{{translate('filter_options')}}

@php $transaction_status=request()->get('transaction_type'); @endphp

{{translate('summary')}}

@php $credit = $data[0]->total_credit; $debit = $data[0]->total_debit; $balance = $credit - $debit; @endphp
{{translate('debit')}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $debit??0))}}
{{translate('credit')}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$credit??0))}}
{{translate('balance')}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$balance??0))}}

{{translate('transactions')}} {{ $transactions->total() }}

@foreach($transactions as $key => $transaction) @endforeach
{{translate('SL')}} {{translate('transaction_ID')}} {{translate('Customer')}} {{translate('credit')}} {{translate('debit')}} {{translate('balance')}} {{translate('transaction_type')}} {{translate('reference')}} {{translate('created_at')}}
{{ $transactions->firstItem()+($key) }} {{$transaction['transaction_id']}} {{Str::limit($transaction['user'] ? $transaction?->user->f_name.' '.$transaction?->user->l_name : translate('not_found'),20)}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$transaction['credit']))}} @if($transaction['transaction_type'] == 'add_fund' && $transaction['admin_bonus'] > 0) + {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount:$transaction['admin_bonus'])) }} {{ translate('admin_bonus') }} @endif {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$transaction['debit']))}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$transaction['balance']))}} {{translate($transaction['transaction_type'])}} {{translate(str_replace('_',' ',$transaction['reference'])) }} {{date('Y/m/d '.config('timeformat'), strtotime($transaction['created_at']))}}
{!!$transactions->links()!!}
@if(count($transactions)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/customer/wallet/wallet-bonus-setup.blade.php000064400000042775150075320660017474 0ustar00@extends('layouts.back-end.app') @section('title',translate('customer_wallet_bonus_setup')) @section('content')

{{translate('wallet_bonus_setup')}}

{{translate('how_it_works')}}
@csrf
{{translate('wallet_Bonus_Table')}} {{ $data->total() }}
@foreach ($data as $key=>$item) @endforeach
{{translate('SL')}} {{translate('bonus_title')}} {{translate('bonus_info')}} {{translate('bonus_amount')}} {{translate('started_on')}} {{translate('expires_on')}} {{translate('status')}} {{translate('action')}}
{{$data->firstItem()+$key}} {{ $item->title }}
{{translate('minimum_add_amount').' '.'-'}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item->min_add_money_amount)) }}
@if ($item->bonus_type != "fixed")
{{translate('maximum_bonus').' '.'-'}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item->max_bonus_amount)) }}
@endif
{{ $item->bonus_type == 'percentage' ? $item->bonus_amount.'%' : setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item->bonus_amount)) }} {{ date('d M, Y',strtotime($item->start_date_time)) }} {{ date('d M, Y',strtotime($item->end_date_time)) }}
@csrf
@csrf @method('delete')
{!! $data->links() !!}
@if(count($data) == 0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/business-settings/theme-and-addon-menu.blade.php000064400000001061150075320660020130 0ustar00@php use App\Enums\ViewPaths\Admin\ThemeSetup; @endphp admin-views/business-settings/environment-index.blade.php000064400000020614150075320660017717 0ustar00@extends('layouts.back-end.app') @section('title', translate('environment_setup')) @section('content')

{{translate('system_Setup')}}

@include('admin-views.business-settings.system-settings-inline-menu')
{{translate('environment_information')}}
@csrf
@endsection admin-views/business-settings/product-settings.blade.php000064400000025522150075320660017567 0ustar00@extends('layouts.back-end.app') @section('title', translate('product_settings')) @section('content')

{{translate('business_Setup')}}

@include('admin-views.business-settings.business-setup-inline-menu')
{{translate('product_setup')}}
@csrf
{{translate('sell_digital_product')}}
{{translate('show_brand')}}
@endsection admin-views/business-settings/system-settings-inline-menu.blade.php000064400000004330150075320660021643 0ustar00@php use App\Enums\ViewPaths\Admin\BusinessSettings; use App\Enums\ViewPaths\Admin\Currency; use App\Enums\ViewPaths\Admin\DatabaseSetting; use App\Enums\ViewPaths\Admin\EnvironmentSettings; use App\Enums\ViewPaths\Admin\SiteMap; use App\Enums\ViewPaths\Admin\SoftwareUpdate; @endphp admin-views/business-settings/db-index.blade.php000064400000007673150075320660015752 0ustar00@php use Illuminate\Support\Facades\Session; @endphp @extends('layouts.back-end.app') @section('title', translate('DB_clean')) @push('css_or_js') @endpush @section('content') @php($direction = Session::get('direction'))

{{translate('system_Settings')}}

@include('admin-views.business-settings.system-settings-inline-menu')
@csrf
@foreach($tables as $key=>$table)
{{$rows[$key]}}
@endforeach
@endsection @push('script') @endpush admin-views/business-settings/recaptcha-index.blade.php000064400000025317150075320660017312 0ustar00@extends('layouts.back-end.app') @section('title', translate('reCaptcha_Setup')) @section('content')

{{translate('3rd_party')}}

@include('admin-views.business-settings.third-party-inline-menu')
@csrf
{{translate('status')}}
{{translate('how_it_works')}}
@if(isset($config)) @php($config = (array)json_decode($config['value'])) @endif {{translate('turn')}} {{translate(isset($config) && $config['status']==1?'OFF':'ON')}}
{{translate('instructions')}}
  1. {{translate('to_get_site_key_and_secret_key_Go_to_the_Credentials_page')}} ({{translate('click_here')}})
  2. {{translate('add_a_label_(Ex:_abc_company)')}}
  3. {{translate('select_reCAPTCHA_v2_as_ReCAPTCHA_Type')}}
  4. {{translate('select_sub_type').':'.translate('im_not_a_robot_checkbox')}}
  5. {{translate('add_Domain_(For_ex:_demo.6amtech.com)')}}
  6. {{translate('check_in_Accept_the_reCAPTCHA_Terms_of_Service')}}
  7. {{translate('press_Submit')}}
  8. {{translate('copy_Site_Key_and_Secret_Key,_Paste_in_the_input_filed_below_and_Save').'.'}}
@endsection admin-views/business-settings/priority-setup/index.blade.php000064400000011227150075320660020374 0ustar00@extends('layouts.back-end.app') @section('title', translate('priority_setup')) @section('content')

{{ translate('business_Setup') }}

@include('admin-views.business-settings.business-setup-inline-menu') @include('admin-views.business-settings.priority-setup.partial.brand') @include('admin-views.business-settings.priority-setup.partial.category') @include('admin-views.business-settings.priority-setup.partial.vendor-list') @include('admin-views.business-settings.priority-setup.partial.featured-product') @if(theme_root_path() == 'default') @include('admin-views.business-settings.priority-setup.partial.new-arrival-product') @endif @include('admin-views.business-settings.priority-setup.partial.top-vendor') @include('admin-views.business-settings.priority-setup.partial.category-wise-product') @include('admin-views.business-settings.priority-setup.partial.top-rated-product') @include('admin-views.business-settings.priority-setup.partial.best-selling-product') @include('admin-views.business-settings.priority-setup.partial.searched-product') @include('admin-views.business-settings.priority-setup.partial.vendor-product-list')
@endsection admin-views/business-settings/priority-setup/partial/best-selling-product.blade.php000064400000025677150075320660025005 0ustar00

{{ translate('best_selling_products') }}

{{ translate('best_selling_products_are_those_items_that_are_purchased_by_customers_mostly_compared_to_other_products_within_a_specific_period') }}

@csrf
{{ translate('use_default_sorting_list') }}
{{translate('currently_sorting_this_section_based_on_order_count')}}
{{ translate('use_custom_sorting_list') }}
{{ translate('you_can_sorting_this_section_by_others_way') }}
sort_by) ? ($bestSellingProductListPriority?->sort_by == 'most_order' ? 'checked' : '') : 'checked'}}>
sort_by) && $bestSellingProductListPriority?->sort_by == 'reviews_count' ? 'checked' : ''}}>
sort_by) && $bestSellingProductListPriority?->sort_by == 'rating' ? 'checked' : ''}}>
out_of_stock_product) && $bestSellingProductListPriority?->out_of_stock_product == 'desc' ? 'checked' : ''}}>
out_of_stock_product) && $bestSellingProductListPriority?->out_of_stock_product == 'hide' ? 'checked' : ''}}>
out_of_stock_product) ? ($bestSellingProductListPriority?->out_of_stock_product == 'default' ? 'checked' : '') :'checked'}}>
temporary_close_sorting) && $bestSellingProductListPriority?->temporary_close_sorting == 'desc' ? 'checked' : ''}}>
temporary_close_sorting) ? ($bestSellingProductListPriority?->temporary_close_sorting == 'hide' ? 'checked' : '') :'checked'}}>
temporary_close_sorting) ?($bestSellingProductListPriority?->temporary_close_sorting == 'default' ? 'checked' : '' ) : 'checked'}}>
admin-views/business-settings/priority-setup/partial/category-wise-product.blade.php000064400000030743150075320660025165 0ustar00

{{ translate('Category_wise_product_list') }}

{{ translate('category_or_subcategory_wise_product_list_is_for_displaying_the_products_which_are_mostly_ordered').', '.translate('_have_positive_reviews_&_ratings_and_in_alphabetical_order') }}

@csrf
{{ translate('use_default_sorting_list') }}
{{translate('currently_sorting_this_section_based_on_orders')}}
{{ translate('use_custom_sorting_list') }}
{{ translate('you_can_sorting_this_section_by_others_way') }}
sort_by) ? ($categoryWiseProductListPriority?->sort_by == 'most_order' ? 'checked' : '') : 'checked'}}>
sort_by) && $categoryWiseProductListPriority?->sort_by == 'reviews_count' ? 'checked' : ''}}>
sort_by) && $categoryWiseProductListPriority?->sort_by == 'rating' ? 'checked' : ''}}>
sort_by) && $categoryWiseProductListPriority?->sort_by == 'a_to_z' ? 'checked' : ''}}>
sort_by) && $categoryWiseProductListPriority?->sort_by == 'z_to_a' ? 'checked' : ''}}>
out_of_stock_product) && $categoryWiseProductListPriority?->out_of_stock_product == 'desc' ? 'checked' : ''}}>
out_of_stock_product) && $categoryWiseProductListPriority?->out_of_stock_product == 'hide' ? 'checked' : ''}}>
out_of_stock_product) ? ($categoryWiseProductListPriority?->out_of_stock_product == 'default' ? 'checked' : '') :'checked'}}>
temporary_close_sorting) && $categoryWiseProductListPriority?->temporary_close_sorting == 'desc' ? 'checked' : ''}}>
temporary_close_sorting) ? ($categoryWiseProductListPriority?->temporary_close_sorting == 'hide' ? 'checked' : '') :'checked'}}>
temporary_close_sorting) ?($categoryWiseProductListPriority?->temporary_close_sorting == 'default' ? 'checked' : '' ) : 'checked'}}>
admin-views/business-settings/priority-setup/partial/top-vendor.blade.php000064400000032104150075320660023013 0ustar00

{{ translate('top_vendor') }}

{{ translate('top_vendor_list_refers_to_displaying_a_list_based_on_most_ordered_items_of_that_vendor_and_highly_rated').'.'}}

@csrf
{{ translate('use_default_sorting_list') }}
{{ translate('currently_sorting_this_section_based_on_first_created') }}
{{ translate('use_custom_sorting_list') }}
{{ translate('you_can_sorting_this_section_by_others_way') }}
minimum_rating_point) ? ($topVendorPriority?->minimum_rating_point == '4' ? 'checked' : '') : ''}}>
minimum_rating_point) && $topVendorPriority?->minimum_rating_point == '3.5' ? 'checked' : ''}}>
minimum_rating_point) && $topVendorPriority?->minimum_rating_point == '2' ? 'checked' : ''}}>
minimum_rating_point) ? ($topVendorPriority?->minimum_rating_point == 'default' ? 'checked' : '') : 'checked' }}>
sort_by) ? ($topVendorPriority?->sort_by == 'order' ? 'checked' : '') : 'checked'}}>
sort_by) && $topVendorPriority?->sort_by == 'reviews_count' ? 'checked' : ''}}>
sort_by) && $topVendorPriority?->sort_by == 'rating' ? 'checked' : ''}}>
vacation_mode_sorting) && $topVendorPriority?->vacation_mode_sorting == 'desc' ? 'checked' : ''}}>
vacation_mode_sorting) ? ($topVendorPriority?->vacation_mode_sorting == 'hide' ? 'checked' : '') :'checked'}}>
vacation_mode_sorting) ?( $topVendorPriority?->vacation_mode_sorting == 'default' ? 'checked' : '' ) : 'checked'}}>
temporary_close_sorting) && $topVendorPriority?->temporary_close_sorting == 'desc' ? 'checked' : ''}}>
temporary_close_sorting) ? ($topVendorPriority?->temporary_close_sorting == 'hide' ? 'checked' : '') :'checked'}}>
temporary_close_sorting) ?( $topVendorPriority?->temporary_close_sorting == 'default' ? 'checked' : '' ) : 'checked'}}>
admin-views/business-settings/priority-setup/partial/vendor-list.blade.php000064400000032202150075320660023163 0ustar00

{{ translate('vendor_list') }}

{{ translate('the_Vendor_list_arranges_all_vendors_based_on_the_latest_join_that_are_highly_rated_by_customer_choice_and_also_in_alphabetic_order').'.'}}

@csrf
{{ translate('use_default_sorting_list') }}
{{translate('currently_sorting_this_section_based_on_first_created')}}
{{ translate('use_custom_sorting_list') }}
{{ translate('you_can_sorting_this_section_by_others_way') }}
sort_by) && $vendorListPriority?->sort_by == 'latest_created' ? 'checked' : ''}}>
sort_by) && $vendorListPriority?->sort_by == 'first_created' ? 'checked' : ''}}>
sort_by) ? ($vendorListPriority?->sort_by == 'most_order' ? 'checked' : '') : 'checked'}}>
sort_by) && $vendorListPriority?->sort_by == 'reviews_count' ? 'checked' : ''}}>
sort_by) && $vendorListPriority?->sort_by == 'rating' ? 'checked' : ''}}>
sort_by) && $vendorListPriority?->sort_by == 'a_to_z' ? 'checked' : ''}}>
sort_by) && $vendorListPriority?->sort_by == 'z_to_a' ? 'checked' : ''}}>
vacation_mode_sorting) && $vendorListPriority?->vacation_mode_sorting == 'desc' ? 'checked' : ''}}>
vacation_mode_sorting) ? ($vendorListPriority?->vacation_mode_sorting == 'hide' ? 'checked' : '') :'checked'}}>
vacation_mode_sorting) ?( $vendorListPriority?->vacation_mode_sorting == 'default' ? 'checked' : '' ) : 'checked'}}>
temporary_close_sorting) && $vendorListPriority?->temporary_close_sorting == 'desc' ? 'checked' : ''}}>
temporary_close_sorting) ? ($vendorListPriority?->temporary_close_sorting == 'hide' ? 'checked' : '') :'checked'}}>
temporary_close_sorting) ?( $vendorListPriority?->temporary_close_sorting == 'default' ? 'checked' : '' ) : 'checked'}}>
admin-views/business-settings/priority-setup/partial/category.blade.php000064400000016200150075320660022532 0ustar00

{{ translate('category') }}

{{ translate('the_category_list_groups_similar_products_together_arranged_with_the_latest_category_first_and_in_alphabetical_order')}}

@csrf
{{ translate('use_default_sorting_list') }}
{{translate('currently_sorting_this_section_based_on_priority_wise')}}
{{ translate('use_custom_sorting_list') }}
{{ translate('you_can_sorting_this_section_by_others_way') }}
sort_by) && $categoryPriority?->sort_by == 'latest_created' ? 'checked' : ''}}>
sort_by) && $categoryPriority?->sort_by == 'first_created' ? 'checked' : ''}}>
sort_by) ? ($categoryPriority?->sort_by == 'most_order' ? 'checked' : '') : 'checked'}}>
sort_by) && $categoryPriority?->sort_by == 'a_to_z' ? 'checked' : ''}}>
sort_by) && $categoryPriority?->sort_by == 'z_to_a' ? 'checked' : ''}}>
admin-views/business-settings/priority-setup/partial/brand.blade.php000064400000016117150075320660022012 0ustar00

{{ translate('brand') }}

{{ translate('brands_are_lists_of_the_specific_products').', '. translate('_organize_by_putting_the_newest_ones_at_the_top_and_arranging_everything_alphabetically').'.'}}

@csrf
{{ translate('use_default_sorting_list') }}
{{translate('currently_sorting_this_section_based_on_latest_add')}}
{{ translate('use_custom_sorting_list') }}
{{ translate('you_can_sorting_this_section_by_others_way') }}
sort_by) && $brandPriority?->sort_by == 'latest_created' ? 'checked' : ''}}>
sort_by) && $brandPriority?->sort_by == 'first_created' ? 'checked' : ''}}>
sort_by) ? ($brandPriority?->sort_by == 'most_order' ? 'checked' : '') : 'checked'}}>
sort_by) && $brandPriority?->sort_by == 'a_to_z' ? 'checked' : ''}}>
sort_by) && $brandPriority?->sort_by == 'z_to_a' ? 'checked' : ''}}>
admin-views/business-settings/priority-setup/partial/vendor-product-list.blade.php000064400000023250150075320660024644 0ustar00

{{ translate('vendor_product_list') }}

{{ translate('the_vendor_product_list_is_for_displaying_the_products_which_are_mostly_ordered').', '.translate('_have_good_reviews_&_sorted_alphabetically') }}

@csrf
{{ translate('use_default_sorting_list') }}
{{translate('currently_sorting_this_section_based_on_latest_add')}}
{{ translate('use_custom_sorting_list') }}
{{ translate('you_can_sorting_this_section_by_others_way') }}
sort_by) ? ($vendorProductListPriority?->sort_by == 'most_order' ? 'checked' : '') : 'checked'}}>
sort_by) && $vendorProductListPriority?->sort_by == 'reviews_count' ? 'checked' : ''}}>
sort_by) && $vendorProductListPriority?->sort_by == 'rating' ? 'checked' : ''}}>
sort_by) && $vendorProductListPriority?->sort_by == 'a_to_z' ? 'checked' : ''}}>
sort_by) && $vendorProductListPriority?->sort_by == 'z_to_a' ? 'checked' : ''}}>
out_of_stock_product) && $vendorProductListPriority?->out_of_stock_product == 'desc' ? 'checked' : ''}}>
out_of_stock_product) && $vendorProductListPriority?->out_of_stock_product == 'hide' ? 'checked' : ''}}>
out_of_stock_product) ? ($vendorProductListPriority?->out_of_stock_product == 'default' ? 'checked' : '') :'checked'}}>
admin-views/business-settings/priority-setup/partial/featured-product.blade.php000064400000032657150075320660024210 0ustar00 admin-views/business-settings/priority-setup/partial/searched-product.blade.php000064400000021347150075320660024161 0ustar00

{{ translate('products_list') }} ({{ translate('Search_Bar') }})

{{ translate('the_product_list_(Search_Bar)_is_the_list_of_those_products_which_appear_during_search_based_on_product_availability') }}

@csrf
{{ translate('use_default_sorting_list') }}
{{translate('currently_sorting_this_section_by_keyword_wise')}}
{{ translate('use_custom_sorting_list') }}
{{ translate('you_can_sorting_this_section_by_others_way') }}
out_of_stock_product) && $searchedProductListPriority?->out_of_stock_product == 'desc' ? 'checked' : ''}}>
out_of_stock_product) && $searchedProductListPriority?->out_of_stock_product == 'hide' ? 'checked' : ''}}>
out_of_stock_product) ? ($searchedProductListPriority?->out_of_stock_product == 'default' ? 'checked' : '') :'checked'}}>
temporary_close_sorting) && $searchedProductListPriority?->temporary_close_sorting == 'desc' ? 'checked' : ''}}>
temporary_close_sorting) ? ($searchedProductListPriority?->temporary_close_sorting == 'hide' ? 'checked' : '') :'checked'}}>
temporary_close_sorting) ?( $searchedProductListPriority?->temporary_close_sorting == 'default' ? 'checked' : '' ) : 'checked'}}>
admin-views/business-settings/priority-setup/partial/top-rated-product.blade.php000064400000033171150075320660024300 0ustar00

{{ translate('top_rated_products') }}

{{ translate('top_rated_products_are_the_mostly_ordered_product_list_of_customer_choice_which_are_highly_rated_&_reviewed') }}

@csrf
{{ translate('use_default_sorting_list') }}
{{translate('currently_sorting_this_section_based_on_review_count')}}
{{ translate('use_custom_sorting_list') }}
{{ translate('you_can_sorting_this_section_by_others_way') }}
minimum_rating_point) ? ($topRatedProductListPriority?->minimum_rating_point == '4' ? 'checked' : '') : ''}}>
minimum_rating_point) && $topRatedProductListPriority?->minimum_rating_point == '3.5' ? 'checked' : ''}}>
minimum_rating_point) && $topRatedProductListPriority?->minimum_rating_point == '3' ? 'checked' : ''}}>
minimum_rating_point) ? ($topRatedProductListPriority?->minimum_rating_point == 'default' ? 'checked' : '') : 'checked' }}>
sort_by) ? ($topRatedProductListPriority?->sort_by == 'most_order' ? 'checked' : '') : 'checked'}}>
sort_by) && $topRatedProductListPriority?->sort_by == 'reviews_count' ? 'checked' : ''}}>
sort_by) && $topRatedProductListPriority?->sort_by == 'rating' ? 'checked' : ''}}>
out_of_stock_product) && $topRatedProductListPriority?->out_of_stock_product == 'desc' ? 'checked' : ''}}>
out_of_stock_product) && $topRatedProductListPriority?->out_of_stock_product == 'hide' ? 'checked' : ''}}>
out_of_stock_product) ? ($topRatedProductListPriority?->out_of_stock_product == 'default' ? 'checked' : '') :'checked'}}>
temporary_close_sorting) && $topRatedProductListPriority?->temporary_close_sorting == 'desc' ? 'checked' : ''}}>
temporary_close_sorting) ? ($topRatedProductListPriority?->temporary_close_sorting == 'hide' ? 'checked' : '') :'checked'}}>
temporary_close_sorting) ?($topRatedProductListPriority?->temporary_close_sorting == 'default' ? 'checked' : '' ) : 'checked'}}>
admin-views/business-settings/priority-setup/partial/new-arrival-product.blade.php000064400000034171150075320660024631 0ustar00

{{ translate('new_arrival_products') }}

{{ translate('these_new_arrival_products_are_items_recently_added_to_the_list_within_a_specific_time_frame_and_have_positive_reviews_&_ratings') }}

@csrf
{{ translate('use_default_sorting_list') }}
{{translate('currently_sorting_this_section_based_on_latest_add')}}
{{ translate('use_custom_sorting_list') }}
{{ translate('you_can_sorting_this_section_by_others_way') }}
{{ translate('set_duration') }}

{{ translate('products_are_considered_as') }} {{ translate('new_arrival') }}, {{ translate('if_it_is_added_with_in').' X '.translate('Days').'/'.translate('months)') }}

sort_by) && $newArrivalProductListPriority?->sort_by == 'latest_created' ? 'checked' : ''}}>
sort_by) && $newArrivalProductListPriority?->sort_by == 'reviews_count' ? 'checked' : ''}}>
sort_by) && $newArrivalProductListPriority?->sort_by == 'rating' ? 'checked' : ''}}>
sort_by) && $newArrivalProductListPriority?->sort_by == 'a_to_z' ? 'checked' : ''}}>
sort_by) && $newArrivalProductListPriority?->sort_by == 'z_to_a' ? 'checked' : ''}}>
out_of_stock_product) && $newArrivalProductListPriority?->out_of_stock_product == 'desc' ? 'checked' : ''}}>
out_of_stock_product) && $newArrivalProductListPriority?->out_of_stock_product == 'hide' ? 'checked' : ''}}>
out_of_stock_product) ? ($newArrivalProductListPriority?->out_of_stock_product == 'default' ? 'checked' : '') :'checked'}}>
temporary_close_sorting) && $newArrivalProductListPriority?->temporary_close_sorting == 'desc' ? 'checked' : ''}}>
temporary_close_sorting) ? ($newArrivalProductListPriority?->temporary_close_sorting == 'hide' ? 'checked' : '') :'checked'}}>
temporary_close_sorting) ?($newArrivalProductListPriority?->temporary_close_sorting == 'default' ? 'checked' : '' ) : 'checked'}}>
admin-views/business-settings/mail/index.blade.php000064400000125031150075320660016276 0ustar00@php use App\Utils\Helpers; @endphp @extends('layouts.back-end.app') @section('title', translate('mail_Config')) @push('css_or_js') @endpush @section('content')

{{translate('3rd_party')}}

@include('admin-views.business-settings.third-party-inline-menu')
@endsection @push('script') @endpush admin-views/business-settings/order-settings/index.blade.php000064400000047663150075320660020343 0ustar00@extends('layouts.back-end.app') @section('title', translate('order_settings')) @section('content')

{{translate('business_setup')}}

@include('admin-views.business-settings.business-setup-inline-menu')
{{translate('order_settings')}}
@csrf
@php($orderVerification=getWebConfig('order_verification'))
{{translate('order_delivery_verification')}}
@php($minimumOrderAmountStatus=getWebConfig('minimum_order_amount_status'))
{{translate('minimum_order_amount')}}
@php($billingInputByCustomer=getWebConfig('billing_input_by_customer'))
{{translate('show_billing_address_in_checkout')}}
@php($freeDelivery=getWebConfig('free_delivery_status'))
{{translate('free_delivery')}}
@php($freeDeliveryResponsibility=getWebConfig('free_delivery_responsibility'))
@php($freeDeliveryOverAmountSeller=getWebConfig('free_delivery_over_amount_seller'))
@php($refundDayLimit=getWebConfig('refund_day_limit'))
@php($guestCheckout=getWebConfig('guest_checkout'))
{{translate('guest_checkout')}}
@endsection @push('script') @endpush admin-views/business-settings/website-announcement.blade.php000064400000007064150075320660020404 0ustar00@extends('layouts.back-end.app') @section('title', translate('announcement')) @section('content')

{{translate('announcement_setup')}}

@csrf @if (isset($announcement))
{{translate('announcement_Setup')}}
{{ $announcement['color'] }}
{{ $announcement['text_color'] }}
@endif
@endsection @push('script_2') @endpush admin-views/business-settings/map-api/index.blade.php000064400000020374150075320660016704 0ustar00@php use App\Utils\Helpers; @endphp @extends('layouts.back-end.app') @section('title', translate('third_party_apis')) @section('content')

{{translate('3rd_party')}}

@include('admin-views.business-settings.third-party-inline-menu')
@csrf

{{translate('google_map_API_setup')}}

{{translate('NB').':'}} {{ translate('client_key_should_have_enable_map_javascript_api_and_you_can_restrict_it_with_http_refer').' '.translate('server_key_should_have_enable_place_api_key_and_you_can_restrict_it_with_ip').' '.translate('you_can_use_same_api_for_both_field_without_any_restrictions').'.'}}

@endsection admin-views/business-settings/analytics/index.blade.php000064400000006407150075320660017350 0ustar00@extends('layouts.back-end.app') @section('title', translate('analytics_script')) @section('content')

{{translate('3rd_party')}}

@include('admin-views.business-settings.third-party-inline-menu')
@php($pixel_analytics = getWebConfig(name: 'pixel_analytics'))
@csrf
@php($google_tag_manager_id = getWebConfig(name: 'google_tag_manager_id'))
@csrf
@endsection admin-views/business-settings/cookie-settings.blade.php000064400000006364150075320660017363 0ustar00@extends('layouts.back-end.app') @section('title', translate('cookie_settings')) @section('content')

{{translate('system_setup')}}

@include('admin-views.business-settings.system-settings-inline-menu')
@csrf
{{translate('cookie_settings').':'}}
@endsection admin-views/business-settings/delivery-man-settings/index.blade.php000064400000015174150075320660021614 0ustar00@extends('layouts.back-end.app') @section('title', translate('delivery_Man_Settings')) @section('content')

{{translate('business_setup')}}

@include('admin-views.business-settings.business-setup-inline-menu')
{{translate('delivery_Man_Settings')}}
@csrf
{{translate('upload_Picture_on_Delivery')}}
@endsection admin-views/business-settings/offline-payment-method/index.blade.php000064400000024336150075320660021735 0ustar00@extends('layouts.back-end.app') @section('title', translate('offline_Payment_Method')) @section('content')

{{translate('3rd_party')}}

@include('admin-views.business-settings.third-party-payment-method-menu')
@endsection @push('script') @endpush admin-views/business-settings/offline-payment-method/update-view.blade.php000064400000024476150075320660023065 0ustar00@extends('layouts.back-end.app') @section('title', translate('edit_Offline_Payment_Method')) @section('content')

{{translate('3rd_party')}}

@include('admin-views.business-settings.third-party-payment-method-menu')
@csrf
{{translate('payment_information')}}
{{ translate('add_new_field') }}
@foreach ($method['method_fields'] as $key=>$item) @php($inputFieldsRandomNumber = rand())
@endforeach
{{translate('required_information_from_Customer')}}
{{ translate('add_new_field') }}
@php($counter = count($method['method_informations'])) @foreach ($method['method_informations'] as $key=>$item) @php($customerInputFieldsRandomNumber = rand())
@endforeach
@endsection @push('script') @endpush admin-views/business-settings/offline-payment-method/add-view.blade.php000064400000043501150075320660022321 0ustar00@extends('layouts.back-end.app') @section('title', translate('add_Offline_Payment_Method')) @push('css_or_js') @endpush @section('content')

{{translate('3rd_party')}}

@include('admin-views.business-settings.third-party-payment-method-menu')
@csrf
{{translate('payment_information')}}
{{ translate('add_new_field') }}
@php($inputFieldsRandomNumber = rand())
{{translate('required_information_from_Customer')}}
{{ translate('Add_New_Field') }}
@php($customerInputFieldsRandomNumber = rand())
@endsection @push('script') @endpush admin-views/business-settings/theme-setup.blade.php000064400000070251150075320660016510 0ustar00@extends('layouts.back-end.app') @section('title', translate('theme_setup')) @push('css_or_js') @endpush @section('content')

{{translate('system_setup')}}

{{ translate('how_the_setting_works') }}
@include('admin-views.business-settings.theme-and-addon-menu')

{{translate('upload_theme')}}

@csrf
{{translate('0').'%'}}
@php($conditionOne=str_replace('MB','',ini_get('upload_max_filesize'))>=20 && str_replace('MB','',ini_get('upload_max_filesize'))>=20) @php($conditionTwo=str_replace('MB','',ini_get('post_max_size'))>=20 && str_replace('MB','',ini_get('post_max_size'))>=20)
{{ translate('instructions') }}
  • {{translate('maximum_file_size')}} 50 MB
  • {{translate('have_to_upload_zip_file')}}
@if($conditionOne && $conditionTwo)
@else
@endif
{{ translate('read_Before_Change_Theme') }}
@foreach($themes as $key => $theme)

{{ ucwords(str_replace('_', ' ', $key=='default' ? 'default_theme' : $theme['name'])) }}

@if($key!='default' && theme_root_path() != $key) @endif @if(theme_root_path() == $key) @else @endif
@endforeach @include('admin-views.business-settings.partials.theme-activate-modal')
@endsection @push('script') @endpush admin-views/business-settings/apps-settings.blade.php000064400000067660150075320660017063 0ustar00@extends('layouts.back-end.app') @section('title', translate('app_settings')) @push('css_or_js') @endpush @section('content')

{{translate('system_setup')}}

{{translate('read_instructions')}}
@include('admin-views.business-settings.system-settings-inline-menu')
{{translate('user_app_version_control')}}
@csrf
{{translate('for_android')}}
{{translate('for_iOS')}}
{{translate('vendor_app_version_control')}}
@csrf
{{translate('for_android')}}
{{translate('for_iOS')}}
{{translate('delivery_man_app_version_control')}}
@csrf
{{translate('for_android')}}
{{translate('for_iOS')}}
@endsection @push('script') @endpush admin-views/business-settings/partials/theme-activate-modal-data.blade.php000064400000003320150075320660022761 0ustar00 admin-views/business-settings/partials/theme-activate-modal.blade.php000064400000000450150075320660022053 0ustar00 admin-views/business-settings/partials/theme-information-modal-data.blade.php000064400000006270150075320660023515 0ustar00 admin-views/business-settings/third-party-payment-method-menu.blade.php000064400000001074150075320660022407 0ustar00 admin-views/business-settings/login-settings-menu.blade.php000064400000001213150075320660020150 0ustar00@php use App\Enums\ViewPaths\Admin\BusinessSettings; @endphp admin-views/business-settings/social-media-chat/view.blade.php000064400000007352150075320660020470 0ustar00@extends('layouts.back-end.app') @section('title', translate('social_Media_Chatting')) @section('content')

{{translate('3rd_party')}}

@include('admin-views.business-settings.third-party-inline-menu') @php($whatsapp = getWebConfig('whatsapp'))
@csrf

{{translate('whatsApp')}}

@if($whatsapp)
img
@else
@endif
@endsection admin-views/business-settings/email-template/index.blade.php000064400000005546150075320660020264 0ustar00@php $companyName = getWebConfig(name: 'company_name'); $companyLogo = getWebConfig(name: 'company_web_logo'); $title = $template['title'] ?? null; $body = $template['body'] ?? null; $copyrightText = $template['copyright_text'] ?? null; $footerText = $template['footer_text'] ?? null; $buttonName = $template['button_name'] ?? null; foreach ($template?->translationCurrentLanguage ?? [] as $translate) { $title = $translate->key == 'title' ? $translate->value : $title; $body = $translate->key == 'body' ? $translate->value : $body; $copyrightText = $translate->key == 'copyright_text' ? $translate->value : $copyrightText; $footerText = $translate->key == 'footer_text' ? $translate->value : $footerText; $buttonName = $translate->key == 'button_name' ? $translate->value : $buttonName; } @endphp @extends('layouts.back-end.app') @section('title', translate('email_templates')) @push('css_or_js') @endpush @section('content')
@include('admin-views.business-settings.email-template.partials.page-title') @include('admin-views.business-settings.email-template.partials.'.$template['user_type'].'-mail-inline-menu')
@include('admin-views.business-settings.email-template.partials.update-status')
{{translate('template_UI')}}
@include('admin-views.business-settings.email-template.'.$template['user_type'].'-mail-template'.'.'.$template['template_design_name'])
@include('admin-views.business-settings.email-template.partials.form-field')
@include('admin-views.business-settings.email-template.partials.instructions') @endsection @push('script_2') @endpush admin-views/business-settings/email-template/partials/admin-mail-inline-menu.blade.php000064400000001014150075320660025204 0ustar00@php use App\Enums\EmailTemplateKey; @endphp
admin-views/business-settings/email-template/partials/update-status.blade.php000064400000003436150075320660023573 0ustar00
@csrf
{{translate('get_email_on_').translate(str_replace('-','_',$template['template_name'])).' ?'}}
admin-views/business-settings/email-template/partials/form-field.blade.php000064400000046775150075320660023031 0ustar00@php use App\Utils\Helpers; @endphp
@csrf
@php($language = $language->value ?? null) @php($defaultLang = 'en') @php($defaultLang = getDefaultLanguage())
{{translate('read_instructions')}}
@if(!in_array('logo',$template['hide_field']))
@endif @if(!in_array('icon',$template['hide_field']))
@endif
{{translate('header_content')}}
@foreach (json_decode($language) as $lang) locale == $lang && $translation->key == 'title') { $translate[$lang]['title'] = $translation->value; } if ($translation->locale == $lang && $translation->key == 'body') { $translate[$lang]['body'] = $translation->value; } } } ?>
@endforeach
@if(!in_array('product_information',$template['hide_field']))
{{translate('product_information')}}

{{translate('product_information_will_be_automatically_bind_from_database').' '.translate('If_you_don’t_want_to_see_the_information_in_the_mail').' '.translate('just_turn_the_switch_button_off').'.'}}

@endif @if(!in_array('banner_image',$template['hide_field']))
@endif @if(!in_array('button_content',$template['hide_field']))
{{translate('button_content')}}
@if(!in_array('button_content_status',$template['hide_field'])) @endif
@foreach (json_decode($language) as $lang) locale == $lang && $translation->key == 'button_name') { $translate[$lang]['button_name'] = $translation->value; } } } ?>
@endforeach
@if(!in_array('button_url',$template['hide_field']))
@endif
@endif @if(!in_array('order_information',$template['hide_field']))
{{translate('order_information')}}

{{translate('order_Information_will_be_automatically_bind_from_database').'. '.translate('if_you don’t_want_to see_the_information_in_the_mail').'. '.translate('just_turn_the_switch_button_off').'.'}}

@endif
{{translate('footer_content')}}
@foreach (json_decode($language) as $lang) locale == $lang && $translation->key == 'footer_text') { $translate[$lang]['footer_text'] = $translation->value; } } } ?>
@endforeach
@foreach($socialMedia as $key=>$media)
@endforeach
@foreach (json_decode($language) as $lang) locale == $lang && $translation->key == 'copyright_text') { $translate[$lang]['copyright_text'] = $translation->value; } } } ?>
@endforeach
admin-views/business-settings/email-template/partials/delivery-man-mail-inline-menu.blade.php000064400000001045150075320660026514 0ustar00@php use App\Enums\EmailTemplateKey; @endphp
admin-views/business-settings/email-template/partials/vendor-mail-inline-menu.blade.php000064400000001023150075320660025411 0ustar00@php use App\Enums\EmailTemplateKey; @endphp
admin-views/business-settings/email-template/partials/instructions.blade.php000064400000016274150075320660023540 0ustar00 admin-views/business-settings/email-template/partials/page-title.blade.php000064400000003413150075320660023016 0ustar00@php use App\Enums\EmailTemplateKey; @endphp admin-views/business-settings/email-template/partials/customer-mail-inline-menu.blade.php000064400000001031150075320660025754 0ustar00@php use App\Enums\EmailTemplateKey; @endphp
business-settings/email-template/delivery-man-mail-template/reset-password-verification.blade.php000064400000001407150075320660031655 0ustar00admin-views

{{$title ?? translate('OTP_Verification_for_password_reset')}}

{!! $body !!}

{{$data['verificationCode'] ?? '3123123'}}


@include('admin-views.business-settings.email-template.partials-design.footer')
admin-views/business-settings/email-template/partials-design/footer.blade.php000064400000006006150075320660023531 0ustar00

{{translate('Thanks_&_Regards')}},
{{getWebConfig('company_name')}}

admin-views/business-settings/email-template/partials-design/footer-design-without-logo.blade.php000064400000005177150075320660027447 0ustar00
admin-views/business-settings/email-template/partials-design/footer-design-without-logo-2.blade.php000064400000005406150075320660027601 0ustar00

{{translate('Thanks_&_Regards')}},
{{getWebConfig('company_name')}}

admin-views/business-settings/email-template/vendor-mail-template/order-received.blade.php000064400000016073150075320660026077 0ustar00

{{$title}}

{!! $body !!}

{{translate('order_Info')}}

{{translate('order_Summary')}}

{{translate('Order').' # '.($data['order']->id ?? '432121')}}
{{date('d M, Y : h:i:A' ,strtotime($data['order']->created_at ?? now()))}}
@if(isset($data['order'])) @php $itemPrice=0; $totalPrice=0; $subtotal=0; $total=0; $shipping=0; $discount=0; $tax=0; $row=0; $finalAmount = 0; @endphp @foreach($data['order']->details as $key=>$detail) @php($productDetails = $detail?->product ?? json_decode($detail->product_details) ) @php($itemPrice+=$detail['price']*$detail['qty']) @php($subtotal=$detail['price']*$detail['qty']-$detail['discount']) @php($discount+=$detail['discount']) @php($tax+=$detail['tax']) @php($total+=$subtotal) @endforeach @php($shipping=$data['order']['shipping_cost']) @php($couponDiscount = $data['order']['discount_amount']) @php($deliveryFeeDiscount = 0) @if ($data['order']['is_shipping_free']) @php($deliveryFeeDiscount = $shipping) @endif @php($finalAmount = $total+$tax+$shipping-$couponDiscount-$deliveryFeeDiscount) @else @endif

{{translate('Thanks_&_Regards')}},
{{getWebConfig('company_name')}}

@include('admin-views.business-settings.email-template.partials-design.footer-design-without-logo')
admin-views/business-settings/email-template/vendor-mail-template/registration-denied.blade.php000064400000001155150075320660027133 0ustar00

{{$title}}

{!! $body !!}

@include('admin-views.business-settings.email-template.partials-design.footer')
admin-views/business-settings/email-template/vendor-mail-template/registration-approved.blade.php000064400000001224150075320660027520 0ustar00

{{$title ?? translate('registration_Approved')}}

{!! $body !!}

@include('admin-views.business-settings.email-template.partials-design.footer')
admin-views/business-settings/email-template/vendor-mail-template/registration.blade.php000064400000001156150075320660025706 0ustar00

{{$title}}

{!! $body !!}

@include('admin-views.business-settings.email-template.partials-design.footer')
admin-views/business-settings/email-template/vendor-mail-template/account-suspended.blade.php000064400000001171150075320660026615 0ustar00

{{$template['title']}}

{!! $body !!}

@include('admin-views.business-settings.email-template.partials-design.footer')
admin-views/business-settings/email-template/vendor-mail-template/forgot-password.blade.php000064400000001514150075320660026332 0ustar00

{{$title}}

{!! $body !!}

{{translate('click_here')}}
{{$data['passwordResetURL'] ?? translate('change_password')}}


@include('admin-views.business-settings.email-template.partials-design.footer')
admin-views/business-settings/email-template/vendor-mail-template/account-activation.blade.php000064400000001156150075320660026767 0ustar00

{{$title}}

{!! $body !!}

@include('admin-views.business-settings.email-template.partials-design.footer')
business-settings/email-template/customer-mail-template/digital-product-download.blade.php000064400000010426150075320660030361 0ustar00admin-views

{{$title}}

{!! $body !!}

{{translate('order_Info')}}

{{translate('to_verify_when_download_your_product').','.translate('_use_your_order_info').'.'}}

{{translate('click_below')}}
{{url('digital-product-download-pos')}}

{{translate('don’t_share_your_order_information').', '.translate('_it’s_confidential').', '.translate('_if_you_share_this_info').', '.translate('_then_anyone_can_download').'.'}}

{{translate('meanwhile_click_here_to_visit_').$companyName.translate('_website')}}
{{url('/')}}


@include('admin-views.business-settings.email-template.partials-design.footer-design-without-logo-2')
business-settings/email-template/customer-mail-template/registration-verification.blade.php000064400000001322150075320660030646 0ustar00admin-views

{{$title}}

{!! $body !!}

{{$data['verificationCode'] ?? '3123123'}}


@include('admin-views.business-settings.email-template.partials-design.footer')
admin-views/business-settings/email-template/customer-mail-template/account-block.blade.php000064400000001155150075320660026263 0ustar00

{{$title}}

{!! $body !!}

@include('admin-views.business-settings.email-template.partials-design.footer')
admin-views/business-settings/email-template/customer-mail-template/registration-from-pos.blade.php000064400000002247150075320660030014 0ustar00

{{$title?? translate('registration_Complete')}}

{!! $body !!}

{{translate('meanwhile_click_here_to_visit_').$companyName.translate('_website')}}
{{url('/')}}


@include('admin-views.business-settings.email-template.partials-design.footer')
admin-views/business-settings/email-template/customer-mail-template/digital-product-otp.blade.php000064400000001322150075320660027426 0ustar00

{{$title}}

{!! $body !!}

{{$data['verificationCode'] ?? '3123123'}}


@include('admin-views.business-settings.email-template.partials-design.footer')
admin-views/business-settings/email-template/customer-mail-template/order-place.blade.php000064400000022037150075320660025736 0ustar00

{{$title}}

{!! $body !!}

{{translate('order_Info')}}

{{translate('order_Summary')}}

{{translate('Order').' # '.($data['order']->id ?? '432121')}}
{{date('d M, Y : h:i:A' ,strtotime($data['order']->created_at ?? now()))}}
@if(isset($data['send-mail'])) @php $showDeliveryAddress = false; foreach ($data['order']->details as $key=>$detail){ $product = json_decode($detail->product_details); if ($product->product_type == 'physical'){ $showDeliveryAddress = true; } } @endphp @if($showDeliveryAddress)
@if($data['order']?->shippingAddress)

{{translate('delivery_Address')}}

{{$data['order']?->shippingAddress->contact_person_name}}
{{$data['order']?->shippingAddress?->address}}
@elseif($data['order']?->billingAddress)

{{translate('delivery_Address')}}

{{$data['order']?->billingAddress->contact_person_name}}
{{$data['order']?->billingAddress?->address}}
@endif
@endif @else

{{translate('delivery_Address')}}

{{translate('Munam Shahariar')}}
{{translate('4517 Washington Ave. Manchester, Kentucky 39495')}}
@endif
@if(isset($data['order'])) @php $itemPrice=0; $totalPrice=0; $subtotal=0; $total=0; $shipping=0; $discount=0; $tax=0; $row=0; $finalAmount = 0; @endphp @foreach($data['order']->details as $key=>$detail) @php($productDetails = $detail?->product ?? json_decode($detail->product_details) ) @php($itemPrice+=$detail['price']*$detail['qty']) @php($subtotal=$detail['price']*$detail['qty']-$detail['discount']) @php($discount+=$detail['discount']) @php($tax+=$detail['tax']) @php($total+=$subtotal) @endforeach @php($shipping=$data['order']['shipping_cost']) @php($couponDiscount = $data['order']['discount_amount']) @php($deliveryFeeDiscount = 0) @if ($data['order']['is_shipping_free']) @php($deliveryFeeDiscount = $shipping) @endif @php($finalAmount = $total+$tax+$shipping-$couponDiscount-$deliveryFeeDiscount) @else @endif

{{translate('Thanks_&_Regards')}},
{{getWebConfig('company_name')}}

@include('admin-views.business-settings.email-template.partials-design.footer-design-without-logo')
admin-views/business-settings/email-template/customer-mail-template/registration.blade.php000064400000001000150075320660026236 0ustar00

{{$title}}

{!! $body !!}

@include('admin-views.business-settings.email-template.partials-design.footer')
admin-views/business-settings/email-template/customer-mail-template/add-fund-to-wallet.blade.php000064400000004520150075320660027126 0ustar00

{{$title ?? translate('transaction_successful')}}

{!! $body !!}

{{translate('note')}}: {{isset($data['walletTransaction']) ? ($data['walletTransaction']->transaction_type=='add_fund_by_admin' ? translate('reward_by_company_admin') : translate('loyalty_point_to_wallet')): translate('reward_by_company_admin') }}


@include('admin-views.business-settings.email-template.partials-design.footer')
admin-views/business-settings/email-template/customer-mail-template/forgot-password.blade.php000064400000001457150075320660026704 0ustar00

{{$title}}

{!! $body !!}

{{translate('click_here')}}
{{translate('change_password')}}


@include('admin-views.business-settings.email-template.partials-design.footer')
admin-views/business-settings/email-template/customer-mail-template/account-unblock.blade.php000064400000001156150075320660026627 0ustar00

{{$title}}

{!! $body !!}

@include('admin-views.business-settings.email-template.partials-design.footer')
admin-views/business-settings/email-template/admin-mail-template/order-received.blade.php000064400000016073150075320660025672 0ustar00

{{$title}}

{!! $body !!}

{{translate('order_Info')}}

{{translate('order_Summary')}}

{{translate('Order').' # '.($data['order']->id ?? '432121')}}
{{date('d M, Y : h:i:A' ,strtotime($data['order']->created_at ?? now()))}}
@if(isset($data['order'])) @php $itemPrice=0; $totalPrice=0; $subtotal=0; $total=0; $shipping=0; $discount=0; $tax=0; $row=0; $finalAmount = 0; @endphp @foreach($data['order']->details as $key=>$detail) @php($productDetails = $detail?->product ?? json_decode($detail->product_details) ) @php($itemPrice+=$detail['price']*$detail['qty']) @php($subtotal=$detail['price']*$detail['qty']-$detail['discount']) @php($discount+=$detail['discount']) @php($tax+=$detail['tax']) @php($total+=$subtotal) @endforeach @php($shipping=$data['order']['shipping_cost']) @php($couponDiscount = $data['order']['discount_amount']) @php($deliveryFeeDiscount = 0) @if ($data['order']['is_shipping_free']) @php($deliveryFeeDiscount = $shipping) @endif @php($finalAmount = $total+$tax+$shipping-$couponDiscount-$deliveryFeeDiscount) @else @endif

{{translate('Thanks_&_Regards')}},
{{getWebConfig('company_name')}}

@include('admin-views.business-settings.email-template.partials-design.footer-design-without-logo')
admin-views/business-settings/company-reliability/index.blade.php000064400000014340150075320660021331 0ustar00@extends('layouts.back-end.app') @section('title', translate('company_Reliability')) @section('content')

{{ translate('pages') }}

@include('admin-views.business-settings.pages-inline-menu')
@foreach (json_decode($companyReliabilityData->value) as $key => $value)
@csrf
{{translate($value->item)}}

{{ translate('upload_icon') }}

@endforeach
@endsection @push('script') @endpush admin-views/business-settings/vendor-registration-setting/business-process.blade.php000064400000015112150075320660025232 0ustar00@extends('layouts.back-end.app') @section('title', translate('business_Process')) @section('content')
@include('admin-views.business-settings.vendor-registration-setting.partial.inline-menu')
@csrf
{{translate('business_process')}}
@for($index = 1 ;$index <=3 ;$index++)
{{translate('section').' '.$index}}
{{'('.translate('size').': 1:1'.')'}}
{{ translate('Upload_Image') }}

{{ translate('image_format').' : Jpg, png, jpeg, webp,'}}
{{ translate('image_size').' : '.translate('max'). '2MB' }}

@endfor
@endsection admin-views/business-settings/vendor-registration-setting/partial/add-reason-modal.blade.php000064400000006043150075320660026471 0ustar00 admin-views/business-settings/vendor-registration-setting/partial/update-reason-modal.blade.php000064400000006400150075320660027220 0ustar00 admin-views/business-settings/vendor-registration-setting/partial/inline-menu.blade.php000064400000003727150075320660025610 0ustar00@php use App\Enums\ViewPaths\Admin\VendorRegistrationSetting; @endphp

{{translate('vendor_registration')}}

admin-views/business-settings/vendor-registration-setting/with-us.blade.php000064400000012020150075320660023316 0ustar00@extends('layouts.back-end.app') @section('title', translate('with_us')) @section('content')
@include('admin-views.business-settings.vendor-registration-setting.partial.inline-menu')
@csrf
{{translate('Why_Sell_With_Us')}}
{{translate('size').' : '.'310px x 240px'}}

{{ translate('upload_image') }}

{{ translate('image_format').' : '.'Jpg, png, jpeg, webp,'}}
{{ translate('image_size').' : '.translate('max').' ' .'2 MB'}}

@include('admin-views.business-settings.vendor-registration-setting.add-reason')
@endsection @push('script') @endpush admin-views/business-settings/vendor-registration-setting/faq.blade.php000064400000032271150075320660022477 0ustar00@extends('layouts.back-end.app') @section('title', translate('FAQs')) @section('content')
@include('admin-views.business-settings.vendor-registration-setting.partial.inline-menu')
{{translate('FAQ_list')}} {{$helps->total()}}
@foreach($helps as $key => $help) @endforeach
{{translate('SL')}} {{translate('question')}} {{translate('answer')}} {{translate('priority')}} {{translate('status')}} {{translate('action')}}
{{$helps->firstItem()+$key}}
{{ $help['question'] }}
{{ $help['answer'] }}
{{ $help['ranking'] }}
{{ $helps->links() }}
@if(count($helps)==0) @include('layouts.back-end._empty-state',['text'=>'no_contact_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/business-settings/vendor-registration-setting/download-app.blade.php000064400000023574150075320660024323 0ustar00@extends('layouts.back-end.app') @section('title', translate('download_app')) @section('content')
@include('admin-views.business-settings.vendor-registration-setting.partial.inline-menu')
@csrf
{{translate('download_app_section')}}
{{'('.translate('size').' 1:1'.')'}}
{{ translate('upload_image') }}

{{ translate('image_format').' : '.'Jpg, png, jpeg, webp,'}}
{{ translate('image_size').' : '.translate('max').' ' .'2 MB'}}

{{translate('play_store_button')}}
{{translate('download_link')}}
{{translate('app_store_button')}}
{{translate('download_link')}}
@endsection admin-views/business-settings/vendor-registration-setting/header.blade.php000064400000011534150075320660023157 0ustar00@extends('layouts.back-end.app') @section('title', translate('header')) @section('content')
@include('admin-views.business-settings.vendor-registration-setting.partial.inline-menu')
@csrf
{{translate('header_section')}}
{{'('.translate('size').' : '.'310px x 240px'.')'}}

{{ translate('upload_image') }}

{{ translate('image_format').' : '.'Jpg, png, jpeg, webp,'}}
{{ translate('image_size').' : '.translate('max').' ' .'2 MB'}}

@endsection admin-views/business-settings/vendor-registration-setting/add-reason.blade.php000064400000011705150075320660023744 0ustar00
{{translate('reason_list')}} {{$vendorRegistrationReasons->total()}}
@foreach($vendorRegistrationReasons as $key=>$reason) @endforeach
{{translate('SL')}} {{translate('title')}} {{translate('description')}} {{translate('priority')}} {{translate('status')}} {{translate('action')}}
{{$vendorRegistrationReasons->firstItem()+$key}}
{{$reason['title']}}
{{$reason['description']}}
{{$reason['priority']}}
@csrf
{{ $vendorRegistrationReasons->links() }}
@if(count($vendorRegistrationReasons)==0) @include('layouts.back-end._empty-state',['text'=>'no_contact_found'],['image'=>'default']) @endif
@include('admin-views.business-settings.vendor-registration-setting.partial.add-reason-modal')
admin-views/business-settings/payment-method/index.blade.php000064400000022363150075320660020313 0ustar00@php use Illuminate\Support\Facades\Session; @endphp @extends('layouts.back-end.app') @section('title', translate('payment_Method')) @section('content') @php($direction = Session::get('direction') === "rtl" ? 'right' : 'left')

{{translate('3rd_party')}}

@include('admin-views.business-settings.third-party-payment-method-menu') @if($paymentGatewayPublishedStatus)

{{ translate('your_current_payment_settings_are_disabled,because_you_have_enabled_payment_gateway_addon').' '.translate('To_visit_your_currently_active_payment_gateway_settings_please_follow_the_link').'.' }}

{{translate('settings')}}
@endif
@foreach($paymentGatewaysList as $key=> $gateway)
@csrf @method('PUT')
{{str_replace('_',' ',$gateway->key_name)}}
@php($additional_data = $gateway['additional_data'] != null ? json_decode($gateway['additional_data']) : []) gateway_image ? dynamicStorage(path: 'storage/app/public/payment_modules/gateway_image/'.$additional_data->gateway_image) : ''; }else{ $img_path = dynamicAsset(path: 'public/assets/back-end/img/modal/payment-methods/'.$gateway->key_name.'.png'); } ?>
{{translate('public')}}
@php($mode = $gateway->live_values['mode'])
@if($gateway->key_name === 'paystack') @php($skip=['gateway','mode','status','callback_url']) @else @php($skip=['gateway','mode','status']) @endif @foreach($gateway->live_values as $gatewayKey => $value) @if(!in_array($gatewayKey , $skip))
@endif @endforeach
@endforeach
@endsection @push('script') @endpush admin-views/business-settings/payment-method/payment-option.blade.php000064400000023474150075320660022173 0ustar00@php use Illuminate\Support\Facades\Session; @endphp @extends('layouts.back-end.app') @section('title', translate('payment_options')) @section('content') @php($direction = Session::get('direction') === "rtl" ? 'right' : 'left')

{{ translate('business_Setup') }}

@include('admin-views.business-settings.business-setup-inline-menu')
@csrf
{{translate('payment_methods')}}
@isset($cashOnDelivery)
{{translate('cash_on_delivery')}}
@endisset @isset($digitalPayment)
{{translate('digital_payment')}}
@endisset @isset($offlinePayment)
{{translate('offline_payment')}}
@endisset
@endsection admin-views/business-settings/pages-inline-menu.blade.php000064400000004660150075320660017566 0ustar00@php use App\Enums\ViewPaths\Admin\FeaturesSection;use App\Enums\ViewPaths\Admin\Pages; @endphp admin-views/business-settings/otp-setup.blade.php000064400000014425150075320660016211 0ustar00@extends('layouts.back-end.app') @section('title', translate('OTP_setup')) @section('content')

{{translate('system_setup')}}

@include('admin-views.business-settings.login-settings-menu')
@csrf
{{translate('OTP_&_login_settings')}}
@endsection admin-views/business-settings/business-setup-inline-menu.blade.php000064400000005367150075320660021465 0ustar00@php use App\Enums\ViewPaths\Admin\BusinessSettings; use App\Enums\ViewPaths\Admin\PaymentMethod; @endphp admin-views/business-settings/login-url-setup.blade.php000064400000011241150075320660017310 0ustar00@php use Illuminate\Support\Facades\Session; @endphp @extends('layouts.back-end.app') @section('title', translate('login_Url_Setup')) @section('content') @php($direction = Session::get('direction'))

{{translate('system_settings')}}

@include('admin-views.business-settings.login-settings-menu')
@csrf
{{translate('admin_Login_Page')}}
@php($adminLoginUrl = getWebConfig('admin_login_url'))
{{ url('/').'/login/' }}
@csrf
{{translate('employee_Login_Page')}}
@php($employeeLoginUrl = getWebConfig('employee_login_url'))
{{ url('/').'/login/' }}
@endsection admin-views/business-settings/invoice-settings/index.blade.php000064400000021103150075320660020641 0ustar00@extends('layouts.back-end.app') @section('title', translate('invoice_Settings')) @section('content')

{{translate('business_setup')}}

@include('admin-views.business-settings.business-setup-inline-menu')
{{translate('invoice_settings')}}
@csrf
@endsection @push('script') @endpush admin-views/business-settings/features-section/view.blade.php000064400000036000150075320660020474 0ustar00@extends('layouts.back-end.app') @section('title', translate('features_Section')) @section('content')

{{ translate('pages') }}

@include('admin-views.business-settings.pages-inline-menu')
@csrf
@if(theme_root_path() == 'theme_fashion')
{{ translate('features_Section').' '.'-'.' '.translate('top')}}
{{ translate('features_Section').' '.'-'.' '.translate('middle') }}
{{ translate('add_new') }}
@if (!empty($featuresSectionMiddle) ) @forelse (json_decode($featuresSectionMiddle->value) as $item)
@empty
@endforelse @endif
@endif
{{ translate('features_Section').' '.'-'.' '.translate('bottom') }}
{{ translate('add_new') }}
@if (!empty($featuresSectionBottom) ) @forelse (json_decode($featuresSectionBottom->value) as $key => $item) @php($card_index = rand(1111, 9999))
{{ translate('icon_box') }}
@empty
{{ translate('icon_box') }}

{{ translate('upload_icon') }}

@endforelse @endif
@endsection @push('script') @endpush admin-views/business-settings/website-info.blade.php000064400000141734150075320660016650 0ustar00@extends('layouts.back-end.app') @section('title', translate('general_Settings')) @section('content')

{{ translate('business_Setup') }}

@include('admin-views.business-settings.business-setup-inline-menu')
@csrf
{{translate('maintenance_mode')}}

{{'*'.translate('by_turning_the').', "'. translate('Maintenance_Mode').'"'.translate('ON').' '.translate('all_your_apps_and_customer_website_will_be_disabled_until_you_turn_this_mode_OFF').' '.translate('only_the_Admin_Panel_&_Vendor_Panel_will_be_functional')}}

@csrf
{{translate('company_information')}}
@php($countryCode = getWebConfig(name: 'country_code'))
@php($timeZone = getWebConfig(name: 'timezone'))
@php($default_location = getWebConfig(name: 'default_location')) @if(getWebConfig('map_api_status') ==1 )
@endif
{{translate('business_information')}}
{{translate('email_verification')}}
@php($phoneVerification = getWebConfig(name: 'phone_verification'))
{{translate('OTP_Verification')}}
{{translate('app_download_info')}}
{{translate('apple_store')}}:
@php($appStoreDownload = getWebConfig('download_app_apple_stroe'))
{{translate('download_link')}}
{{translate('google_play_store').':'}}
@php($playStoreDownload = getWebConfig('download_app_google_stroe'))
{{translate('download_link')}}
{{translate('website_Color')}}
{{ strtoupper($businessSetting['primary_color']) }}
{{ strtoupper($businessSetting['secondary_color']) }}
@if(theme_root_path() == 'theme_aster')
{{ $businessSetting['primary_color_light'] ?? '#CFDFFB' }}
@endif
{{translate('website_header_logo')}}
{{ THEME_RATIO[theme_root_path()]['Main website Logo'] }}
{{translate('website_footer_logo')}}
{{ THEME_RATIO[theme_root_path()]['Main website Logo'] }}
{{translate('website_Favicon')}}
( {{translate('ratio').'1:1'}} )
{{translate('loading_gif')}}
( {{translate('ratio').'1:1'}})
{{translate('App_Logo')}}
{{'('.'100X60'.'px'.')'}}
@endsection @push('script') @if(getWebConfig('map_api_status') ==1 ) @endif @endpush admin-views/business-settings/seller-settings.blade.php000064400000036601150075320660017375 0ustar00@extends('layouts.back-end.app') @section('title', translate('vendor_Information')) @section('content')

{{translate('business_setup')}}

@include('admin-views.business-settings.business-setup-inline-menu')
@csrf
{{translate('vendor_setup')}}
@php($commission=getWebConfig('sales_commission'))
{{translate('enable_POS_in_Vendor_Panel')}} @php($sellerPos=getWebConfig('seller_pos'))
{{translate('vendor_registration')}} @php($vendorRegistration=getWebConfig('seller_registration'))
{{translate('set_minimum_order_amount')}} @php($minimumOrderAmountBySeller=getWebConfig('minimum_order_amount_by_seller'))
{{translate('need_product_approval')}}
@php($newProductApproval = getWebConfig('new_product_approval')) @php($productWiseShippingCostApproval = getWebConfig('product_wise_shipping_cost_approval'))
@endsection admin-views/business-settings/language/index.blade.php000064400000051527150075320660017147 0ustar00@php use App\Models\BusinessSetting; use Illuminate\Support\Facades\File; use Illuminate\Support\Facades\Session; @endphp @extends('layouts.back-end.app') @section('title', translate('language')) @section('content') @php($direction = Session::get('direction') === "rtl" ? 'right' : 'left')

{{translate('system_setup')}}

@include('admin-views.business-settings.system-settings-inline-menu')
{{translate('language_table')}}
@php($language=BusinessSetting::where('type','language')->first()) @foreach(json_decode($language['value'],true) as $key =>$data) @endforeach
{{ translate('SL')}} {{translate('ID')}} {{translate('name')}} {{translate('code')}} {{translate('status')}} {{translate('default_status')}} {{translate('action')}}
{{$key++}} {{$data['id']}} {{$data['name']}} ({{$data['direction']??'ltr'}}) {{$data['code']}} @if (array_key_exists('default', $data) && $data['default']) @else
@csrf
@endif
@if (array_key_exists('default', $data) && $data['default']===true) @elseif(array_key_exists('default', $data) && $data['default']===false)
@csrf
@endif
@foreach(json_decode($language['value'],true) as $key =>$data) @endforeach
@endsection @push('script') @endpush admin-views/business-settings/language/index-app.blade.php000064400000010141150075320660017710 0ustar00@extends('layouts.back-end.app') @section('title', translate('language')) @push('css_or_js') @endpush @section('content')

{{translate('select_country_code_for_product_and_category_language')}}

@csrf @php($language=\App\Models\BusinessSetting::where('type','pnc_language')->first()) @php($language = json_decode($language->value,true) ?? [])
@endsection @push('script') @endpush admin-views/business-settings/language/translate.blade.php000064400000011131150075320660020020 0ustar00@php use Illuminate\Support\Facades\Session; @endphp @extends('layouts.back-end.app') @section('title', translate('language_Translate')) @push('css_or_js') @endpush @section('content') @php($direction = Session::get('direction') === "rtl" ? 'right' : 'left')
{{translate('language_content_table')}}
{{translate('back')}}
{{translate('SL')}} {{translate('key')}} {{translate('value')}} {{translate('auto_translate')}} {{translate('update')}}
{{ translate('Loading') }}...
@endsection @push('script') @endpush admin-views/business-settings/delivery-restriction.blade.php000064400000056457150075320660020452 0ustar00@extends('layouts.back-end.app') @section('title', translate('delivery_Restriction')) @push('css_or_js') @endpush @section('content')

{{translate('business_setup')}}

@include('admin-views.business-settings.business-setup-inline-menu')
{{translate('delivery')}}
{{translate('delivery_available_country')}}
@csrf
{{translate('delivery_available_zip_code_area')}}
@csrf
@csrf
@foreach($storedCountries as $key => $store) @foreach($countries as $country) @if($store->country_code == $country['code']) @endif @endforeach @endforeach
{{translate('sl')}} {{translate('country_name')}} {{translate('action')}}
{{ $storedCountries->firstItem() + $key }}{{ $country['name'] }}
@csrf @method('delete')
{{ $storedCountries->links() }}
@if(count($storedCountries)==0) @include('layouts.back-end._empty-state',['text'=>'no_country_found'],['image'=>'default']) @endif
@csrf

* {{translate('multiple_zip_codes_can_be_inputted_by_comma_separating_or_pressing_enter_button')}}

@foreach($storedZip as $key => $zip) @endforeach
{{translate('sl')}} {{translate('zip_code')}} {{translate('action')}}
{{ $storedZip->firstItem() + $key }} {{ $zip->zipcode }}
@csrf @method('delete')
{{ $storedZip->links() }}
@if(count($storedZip)==0) @include('layouts.back-end._empty-state',['text'=>'no_zip_code_found'],['image'=>'default']) @endif
@endsection @push('script_2') @endpush admin-views/business-settings/page/terms-condition.blade.php000064400000004602150075320660020277 0ustar00@extends('layouts.back-end.app') @section('title', translate('terms_and_condition')) @push('css_or_js') @endpush @section('content')

{{translate('pages')}}

@include('admin-views.business-settings.pages-inline-menu')
{{translate('terms_and_condition')}}
@csrf
@endsection @push('script') @endpush admin-views/business-settings/page/about-us.blade.php000064400000004360150075320660016721 0ustar00@extends('layouts.back-end.app') @section('title', translate('about_us')) @push('css_or_js') @endpush @section('content')

{{translate('pages')}}

@include('admin-views.business-settings.pages-inline-menu')
{{translate('about_us')}}
@csrf
@endsection @push('script') @endpush admin-views/business-settings/page/privacy-policy.blade.php000064400000004526150075320660020140 0ustar00@extends('layouts.back-end.app') @section('title', translate('privacy_policy')) @push('css_or_js') @endpush @section('content')

{{translate('pages')}}

@include('admin-views.business-settings.pages-inline-menu')
{{translate('privacy_policy')}}
@csrf
@endsection @push('script') @endpush admin-views/business-settings/page/page.blade.php000064400000007574150075320660016110 0ustar00@extends('layouts.back-end.app') @section('title', translate(str_replace('-',' ',$page))) @push('css_or_js') @endpush @section('content')

{{translate('pages')}}

@include('admin-views.business-settings.pages-inline-menu') @php( $page_data= json_decode($data->value, true))
@csrf
{{translate(str_replace('-',' ',$page))}}
@endsection @push('script') @endpush admin-views/business-settings/social-login/view.blade.php000064400000060062150075320660017601 0ustar00@extends('layouts.back-end.app') @section('title', translate('social_Login')) @section('content')

{{translate('3rd_party')}}

@include('admin-views.business-settings.third-party-inline-menu')
@if (isset($socialLoginServices)) @foreach ($socialLoginServices as $socialLoginService)
@csrf

{{translate($socialLoginService['login_medium'])}} {{translate('login')}}

{{ url('/') }}/customer/auth/login/{{$socialLoginService['login_medium']}}/callback
@endforeach @endif @if(isset($appleLoginServices)) @foreach ($appleLoginServices as $appleLoginService)
@csrf

{{translate($appleLoginService['login_medium'])}} {{translate('login')}}

@endforeach @endif
@endsection admin-views/business-settings/social-media.blade.php000064400000015022150075320660016572 0ustar00@php use Illuminate\Support\Facades\Session; @endphp @extends('layouts.back-end.app') @section('title', translate('social_media')) @section('content') @php($direction = Session::get('direction'))

{{translate('social_media')}}

{{ translate('social_media_form')}}
{{ translate('social_media_table')}}
{{ translate('sl')}} {{ translate('name')}} {{ translate('link')}} {{ translate('status')}} {{ translate('action')}}
@endsection @push('script') @endpush admin-views/business-settings/third-party-inline-menu.blade.php000064400000003532150075320660020733 0ustar00@php use App\Enums\ViewPaths\Admin\Recaptcha; use App\Enums\ViewPaths\Admin\SMSModule; use App\Enums\ViewPaths\Admin\SocialMediaChat; use App\Enums\ViewPaths\Admin\SocialLoginSettings; use App\Enums\ViewPaths\Admin\BusinessSettings; @endphp admin-views/business-settings/sms-index.blade.php000064400000015461150075320660016161 0ustar00@extends('layouts.back-end.app') @section('title', translate('SMS_Module_Setup')) @push('css_or_js') @endpush @section('content')

{{translate('3rd_party')}}

@include('admin-views.business-settings.third-party-inline-menu')

{{translate('NB').':'}} {{ translate('Please_re-check_if_you’ve_put_all_the_data_correctly_or_contact_your_SMS_gateway_provider_for_assistance').'.'}}

@if($paymentGatewayPublishedStatus)

{{ translate('your_current_SMS_settings_are_disabled_because_you_have_enabled_sms_gateway_addon_To_visit_your_currently_active_sms_gateway_settings_please_follow_the_link') }}

{{translate('settings')}}
@endif @foreach($smsGateways as $key => $smsConfig)
@csrf @method('PUT')
{{ str_replace('_', ' ', $smsConfig['key_name'])}}
@php($skip=['gateway','mode','status']) @foreach($smsConfig['live_values'] as $keyName => $value) @if(!in_array($keyName, $skip))
@endif @endforeach
@endforeach
@endsection @push('script') @endpush admin-views/brand/edit.blade.php000064400000013362150075320660012572 0ustar00@extends('layouts.back-end.app') @section('title', translate('brand_Update')) @section('content')

{{ translate('brand_Update') }}

@csrf
@foreach($language as $lang) locale == $lang && $translations->key == "name") { $translate[$lang]['name'] = $translations->value; } } } ?>
@endforeach
{{ THEME_RATIO[theme_root_path()]['Category Image'] }}
@endsection @push('script') @endpush admin-views/brand/add-new.blade.php000064400000012031150075320660013154 0ustar00@extends('layouts.back-end.app') @section('title', translate('brand_Add')) @section('content')

{{ translate('brand_Setup') }}

@csrf
@foreach($language as $lang)
@endforeach
{{ THEME_RATIO[theme_root_path()]['Brand Image'] }}
@endsection @push('script') @endpush admin-views/brand/list.blade.php000064400000027646150075320660012632 0ustar00@extends('layouts.back-end.app') @section('title', translate('brand_List')) @section('content')

{{ translate('brand_List') }} {{ $brands->total() }}

@foreach($brands as $key => $brand) @endforeach
{{ translate('SL') }} {{ translate('brand_Logo') }} {{ translate('name') }} {{ translate('total_Product') }} {{ translate('total_Order') }} {{ translate('status') }} {{ translate('action') }}
{{ $brands->firstItem()+$key }}
{{ Str::limit($brand['defaultname'],20) }} {{ $brand['brand_all_products_count'] }} {{ $brand['brandAllProducts']->sum('order_details_count') }}
@csrf
{{ $brands->links() }}
@if(count($brands)==0) @include('layouts.back-end._empty-state',['text'=>'no_brand_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/site-map/view.blade.php000064400000002447150075320660013252 0ustar00@extends('layouts.back-end.app') @section('title', translate('generate_Sitemap')) @section('content')

{{translate('system_setup')}}

@include('admin-views.business-settings.system-settings-inline-menu')
{{translate('generate_sitemap')}}
@endsection admin-views/employee/edit.blade.php000064400000026161150075320660013324 0ustar00@extends('layouts.back-end.app') @section('title', translate('employee_Edit')) @push('css_or_js') @endpush @section('content')

{{translate('employee_update')}}

@csrf
{{translate('general_information')}}
( {{translate('ratio').'1:1'}})
@if ($employee['identify_image']) @foreach(json_decode($employee['identify_image'],true) as $img)
@endforeach @endif
{{translate('account_information')}}
@endsection @push('script') @endpush admin-views/employee/view.blade.php000064400000012607150075320660013351 0ustar00@extends('layouts.back-end.app') @section('title', translate('employee_details')) @section('content')

{{translate('employee_details')}}

{{'#'.translate('EMP').' '.$employee['id']}}

{{translate('image_Description')}}

{{$employee->name}}

{{isset($employee->role) ? $employee->role->name : translate('role_not_found')}}

  • {{$employee->phone}}
  • {{$employee->email}}
  • @if (!empty($employee->identify_type))
  • {{$employee->identify_type.' '.'-'.' '.$employee?->identify_number ?? translate('identify_number_not_found')}}
  • @endif
{{translate('join').' '.':'.' '.date('d/m/Y',strtotime($employee->created_at))}}
{{translate('access_available').':'.' '}}
@if (isset($employee->role))
@foreach (json_decode($employee->role->module_access) as $key=>$value) {{str_replace('_' ,' ',$value)}} @endforeach
@endif
@endsection admin-views/employee/add-new.blade.php000064400000032524150075320660013716 0ustar00@extends('layouts.back-end.app') @section('title', translate('employee Add')) @push('css_or_js') @endpush @section('content')

{{translate('add_new_employee')}}

@csrf
{{translate('general_information')}}
( {{translate('ratio').' '.'1:1'}} )
{{translate('account_Information')}}
@endsection @push('script') @endpush admin-views/employee/list.blade.php000064400000026350150075320660013352 0ustar00@extends('layouts.back-end.app') @section('title', translate('employee_list')) @section('content')

{{translate('employee_list')}}

{{translate('employee_table')}} {{$employees->total()}}
@foreach($employees as $key => $employee) @endforeach
{{translate('SL')}} {{translate('name')}} {{translate('email')}} {{translate('phone')}} {{translate('role')}} {{translate('status')}} {{translate('action')}}
{{$key+1}}
{{$employee['name']}}
{{$employee['email']}} {{$employee['phone']}} {{$employee?->role['name'] ?? translate('role_not_found')}} @if($employee['id'] == 1) @else
@csrf
@endif
@if($employee['id'] == 1) @else @endif
{{$employees->links()}}
@if(count($employees)==0)
@include('layouts.back-end._empty-state',['text'=>'no_employee_found'],['image'=>'default'])
@endif
@endsection admin-views/vendor/withdraw-view.blade.php000064400000027006150075320660014655 0ustar00@extends('layouts.back-end.app') @section('title', translate('Withdraw information View')) @section('content')

{{translate('withdraw')}}

{{translate('vendor_withdraw_information')}}

{{translate('amount').':'.' '}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $withdrawRequest->amount), currencyCode: getCurrencyCode(type: 'default'))}}
{{translate('request_time').':'.' '}}
{{$withdrawRequest->created_at}}
{{translate('note').':'.' '}}
{{$withdrawRequest->transaction_note}}
@if ($withdrawRequest->approved == 0) @else
@endif
@if($withdrawalMethod) @php($withdrawalMethod = is_array($withdrawalMethod) ? $withdrawalMethod : (is_object($withdrawalMethod) ? (array) $withdrawalMethod : json_decode($withdrawalMethod, true)))

{{ $withdrawalMethod['method_name'].' '.' '.translate('info')}}

@foreach($withdrawalMethod as $key => $method)
{{ ucwords(str_replace('_',' ',$key)).' '.':' }}
{{ $method }}
@endforeach
@else

{{translate('my_bank_info')}}

{{translate('bank_name').' '.':'.' '}}

{{$withdrawRequest?->seller->bank_name ?? translate('no_data_found')}}

{{translate('branch').' '.':'.' '}}
{{$withdrawRequest?->seller->branch ?? translate('no_data_found')}}
{{translate('holder_name').' '.':'.' '}}
{{$withdrawRequest?->seller->holder_name ?? translate('no_data_found')}}
{{translate('account_no').' '.':'.' '}}
{{$withdrawRequest?->seller->account_no ?? translate('no_data_found')}}
@endif @if($withdrawRequest->seller->shop)

{{translate('shop_info')}}

{{translate('vendor').' '.':'.' '}}
{{$withdrawRequest->seller->shop->name}}
{{translate('phone').' '.':'.' '}}
{{$withdrawRequest->seller->shop->contact}}
{{translate('address').' '.':'.' '}}
{{$withdrawRequest->seller->shop->address}}
@endif

{{translate('vendor_info')}}

{{translate('name').' '.':'}}
{{$withdrawRequest->seller->f_name.' '.$withdrawRequest->seller->l_name}}
{{translate('email').' '.':'}}
{{$withdrawRequest->seller->email}}
{{translate('phone').' '.':'}}
{{$withdrawRequest->seller->phone}}
@endsection admin-views/vendor/index.blade.php000064400000023471150075320660013165 0ustar00@php use Illuminate\Support\Str; @endphp @extends('layouts.back-end.app') @section('title', translate('vendor_List')) @section('content')

{{translate('vendor_List')}} {{ $vendors->total() }}

@foreach($vendors as $key=>$seller) @endforeach
{{translate('SL')}} {{translate('shop_name')}} {{translate('vendor_name')}} {{translate('contact_info')}} {{translate('status')}} {{translate('total_products')}} {{translate('total_orders')}} {{translate('action')}}
{{$vendors->firstItem()+$key}}
{{ $seller->shop ? Str::limit($seller->shop->name, 20) : translate('shop_not_found')}}
@if($seller->shop && $seller->shop->temporary_close) {{ translate('temporary_closed') }} @elseif($seller->shop && $seller->shop->vacation_status && $current_date >= date('Y-m-d', strtotime($seller->shop->vacation_start_date)) && $current_date <= date('Y-m-d', strtotime($seller->shop->vacation_end_date))) {{ translate('on_vacation') }} @endif
{{$seller->f_name}} {{$seller->l_name}} {{$seller->phone}} {!! $seller->status=='approved'?'':'' !!} {{$seller->product->count()}} {{$seller->orders->where('seller_is','seller')->where('order_type','default_type')->count()}}
{!! $vendors->links() !!}
@if(count($vendors)==0) @include('layouts.back-end._empty-state',['text'=>'no_vendor_found'],['image'=>'default']) @endif
@endsection admin-views/vendor/withdraw-methods-list.blade.php000064400000026234150075320660016321 0ustar00@extends('layouts.back-end.app') @section('title', translate('withdraw_method_list')) @section('content')

{{translate('withdraw_method_list')}}

+ {{translate('add_method')}}
{{ translate('methods')}} {{ $withdrawalMethods->total() }}
@foreach($withdrawalMethods as $key => $withdrawalMethod) @endforeach
{{translate('SL')}} {{translate('method_name')}} {{ translate('method_fields') }} {{translate('active_status')}} {{translate('default_method')}} {{translate('action')}}
{{$withdrawalMethods->firstitem() + $key}} {{$withdrawalMethod['method_name']}} @foreach($withdrawalMethod['method_fields'] as $methodField) {{translate('name').':'}} {{translate($methodField['input_name'])}} | {{translate('type').':'}} {{ $methodField['input_type'] }} | {{translate('placeholder').':'}} {{ $methodField['placeholder'] }} | {{translate('is_Required').':'}} {{ $methodField['is_required'] ? translate('yes') : translate('no') }}
@endforeach
@csrf
@csrf
@if(!$withdrawalMethod->is_default)
@csrf @method('delete')
@endif
{{$withdrawalMethods->links()}}
@if(count($withdrawalMethods)==0) @include('layouts.back-end._empty-state',['text'=>'no_withdraw_method_found'],['image'=>'default']) @endif
@endsection admin-views/vendor/withdraw-methods-edit.blade.php000064400000027141150075320660016271 0ustar00@extends('layouts.back-end.app') @section('title', translate('withdrawal_Methods')) @section('content')

{{translate('withdrawal_methods')}}

@csrf
@if($withdrawalMethod['method_fields'][0]) @php($field = $withdrawalMethod['method_fields'][0])
@endif
@foreach($withdrawalMethod['method_fields'] as $key=>$field) @if($key>0)
{{translate('remove')}}
@endif @endforeach
@endsection @push('script') @endpush admin-views/vendor/order-details.blade.php000064400000223657150075320660014624 0ustar00@php use App\Utils\Helpers; @endphp @extends('layouts.back-end.app') @section('title', translate('order_details')) @push('css_or_js') @endpush @section('content')

{{translate('order_details')}}

{{translate('order_details')}} #{{$order['id']}}

{{date('d M, Y , h:i A',strtotime($order['created_at']))}}
@if ($linked_orders->count() >0)
{{translate('linked_orders')}} ({{$linked_orders->count().':'}})
@foreach($linked_orders as $linked) {{$linked['id']}} @endforeach
@endif
@if ($order->order_note !=null)
{{'#'.translate('note').':'}}
{{$order->order_note}}
@endif
@if (isset($order->verification_images) && count($order->verification_images)>0 && $order->verification_status ==1)
@endif
@if (isset($shipping_address['latitude']) && isset($shipping_address['longitude'])) @else @endif
{{translate('print_Invoice')}}
{{translate('status')}}: @if($order['order_status']=='pending') {{translate(str_replace('_',' ',$order['order_status']))}} @elseif($order['order_status']=='failed') {{ $order['order_status'] === 'failed' ? translate('failed_to_Deliver') : ''}} @elseif($order['order_status']=='processing' || $order['order_status']=='out_for_delivery') {{translate(str_replace('_',' ',$order['order_status'] == 'processing' ? 'Packaging' : $order['order_status']))}} @elseif($order['order_status']=='delivered' || $order['order_status']=='confirmed') {{translate(str_replace('_',' ',$order['order_status']))}} @else {{translate(str_replace('_',' ',$order['order_status']))}} @endif
{{translate('payment_Method').':'}} {{translate($order['payment_method'])}}
@if($order->payment_method != 'cash_on_delivery' && $order->payment_method != 'pay_by_wallet' && !isset($order->offline_payments))
{{translate('reference_Code')}} : {{str_replace('_',' ',$order['transaction_ref'])}} {{ $order->payment_method == 'offline_payment' ? '('.$order->payment_by.')':'' }}
@endif @if($order->payment_method == 'offline_payment' && isset($order->offline_payments)) @foreach (json_decode($order->offline_payments->payment_info) as $key=>$item) @if (isset($item) && $key != 'method_id')
{{translate($key)}} : {{ $item }}
@endif @endforeach @endif
{{translate('payment_Status')}}: @if($order['payment_status']=='paid') {{translate('paid')}} @else {{translate('unpaid')}} @endif
@if(isset($order->payment_note) && $order->payment_method == 'offline_payment')
{{translate('payment_Note')}}: {{ $order->payment_note }}
@endif @if(Helpers::get_business_settings('order_verification')) {{translate('order_verification_code').':'.$order['verification_code']}} @endif
@php($item_price=0) @php($subtotal=0) @php($total=0) @php($shipping=0) @php($discount=0) @php($tax=0) @php($row=0) @foreach($order->details as $key=>$detail) @if($detail->productAllStatus) @php($subtotal=$detail['price']*$detail['qty']+$detail['tax']-$detail['discount']) @php($item_price+=$detail['price']*$detail['qty']) @php($discount+=$detail['discount']) @php($tax+=$detail['tax']) @php($total+=$subtotal) @endif @php($sellerId=$detail->seller_id) @if(isset($detail->productAllStatus->digital_product_type) && $detail->productAllStatus->digital_product_type == 'ready_after_sell') @php($product_details = json_decode($detail->product_details)) @endif @endforeach
{{translate('SL')}} {{translate('item Details')}} {{translate('variations')}} {{translate('tax')}} {{translate('discount')}} {{translate('price')}}
{{ ++$row }}
{{translate('image_description')}}
{{substr($detail->productAllStatus['name'],0,30)}}{{strlen($detail->productAllStatus['name'])>10?'...':''}}
{{translate('qty')}} : {{$detail['qty']}}
{{translate('unit_price')}} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail['price']+($detail->tax_model =='include' ? $detail['tax']:0)), currencyCode: getCurrencyCode())}} @if ($detail->tax_model =='include') ({{translate('tax_incl.')}}) @else ({{translate('tax').":".($detail->productAllStatus->tax)}}{{$detail->productAllStatus->tax_type ==="percent" ? '%' :''}}) @endif
@if ($detail->variant)
{{translate('variation')}} : {{$detail['variant']}}
@endif
@if($detail->productAllStatus->digital_product_type == 'ready_after_sell') @endif
{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail['price']*$detail['qty']), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail['tax']), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail['discount']), currencyCode: getCurrencyCode())}}{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $subtotal), currencyCode: getCurrencyCode())}}
@php($shipping=$order['shipping_cost']) @php($coupon_discount=$order['discount_amount'])
{{translate('item_price')}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$item_price))}}
{{translate('sub_total')}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$total))}}
{{translate('coupon_discount')}}
{{'-'.setCurrencySymbol(amount: usdToDefaultCurrency(amount:$coupon_discount))}}
{{translate('vat').'/'.translate('tax')}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$tax))}}
{{translate('shipping')}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$shipping))}}
@php($delivery_fee_discount = 0) @if ($order['is_shipping_free'])
{{translate('delivery_fee_discount')}} ({{ translate($order['free_delivery_bearer']) }} {{translate('bearer')}})
{{'-'.' '.setCurrencySymbol(amount: usdToDefaultCurrency(amount:$shipping))}}
@php($delivery_fee_discount = $shipping) @endif @if($order['coupon_discount_bearer'] == 'inhouse' && !in_array($order['coupon_code'], [0, NULL]))
{{translate('coupon_discount').'('.translate('admin_bearer').')'}}
{{'+'.' '.setCurrencySymbol(amount: usdToDefaultCurrency(amount:$coupon_discount))}}
@php($total += $coupon_discount) @endif
{{translate('total')}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$total+$shipping-$coupon_discount -$delivery_fee_discount))}}

{{translate('order_&_shipping_info')}}

{{translate('payment_status')}}
{{ $order->payment_status=='paid' ? translate('paid'):translate('unpaid')}}
@if($physical_product)
  • @if ($order->shipping_type == 'order_wise') @endif
  • @if (isset($order->deliveryMan))
    deliveryMan->image) ?? '', type: 'backend-basic') }}" alt="{{translate('image')}}">
    {{ isset($order->delivery_man) ? $order->deliveryMan->f_name.' '.$order->delivery_man->l_name :''}}
    {{isset($order->deliveryMan) ? $order->deliveryMan->phone :''}}
    @else
    {{translate('image')}}
    {{translate('no_delivery_man_assigned')}}
    @endif
  • @if (isset($order->delivery_man))
  • @endif
  • Image
    {{ $order?->delivery_service_name ?? translate('not_assign_yet')}}
    {{translate('track_ID').' '.':'.' '.$order->third_party_delivery_tracking_id}}
@endif
@if(!$order->is_guest && $order->customer)

{{translate('customer_information')}}

{{translate('image')}}
{{$order->customer['f_name'].' '.$order->customer['l_name']}} {{$orderCount}} {{translate('orders')}} {{$order->customer['phone']}} {{$order->customer['email']}}
@else
@if($order->is_guest)

{{translate('guest_customer')}}

@else
{{ translate('no_customer_found') }}
@endif
@endif
@if($physical_product)
@php($shipping_address=$order['shipping_address_data']) @if($shipping_address)

{{translate('shipping_address')}}

{{translate('name')}} : {{$shipping_address->contact_person_name}}
{{translate('contact')}}: {{$shipping_address->phone}}
{{translate('city')}}: {{$shipping_address->city}}
{{translate('zip_code')}} : {{$shipping_address->zip}}
{{$shipping_address->address ?? translate('empty')}}
@else
{{translate('no_shipping_address_found')}}
@endif
@endif
@php($billing=$order['billing_address_data']) @if($billing)

{{translate('billing_address')}}

{{translate('name')}} : {{$billing->contact_person_name}}
{{translate('contact')}}: {{$billing->phone}}
{{translate('city')}}: {{$billing->city}}
{{translate('zip_code')}} : {{$billing->zip}}
{{$billing->address}}
@else
{{translate('no_billing_address_found')}}
@endif

{{translate('shop_information')}}

@if($order->seller_is == 'admin')
{{ $company_name }}
{{ $total_delivered }} {{translate('orders_Served')}}
@else @if(!empty($order->seller->shop))
{{ $order->seller->shop->name }}
{{ $total_delivered }} {{translate('orders_Served')}} {{ $order->seller->shop->contact }}
{{ $order->seller->shop->address }}
@else
{{translate('no_data_found')}}
@endif @endif
@if (isset($order->verification_images) && count($order->verification_images)>0) @endif @if($billing) @endif customer['l_name']??""}}}"> @endsection @push('script_2') @endpush admin-views/vendor/view/product.blade.php000064400000033201150075320660014500 0ustar00@extends('layouts.back-end.app') @section('title',$seller?->shop->name ?? translate("shop_name_not_found")) @section('content')

{{translate('vendor_details')}}

@if ($seller->status=="pending")

{{translate('vendor_request_for_open_a_shop')}}
@csrf
@csrf
@endif
{{translate('products')}} {{$products->total()}}
@foreach($products as $k=>$product) @endforeach
{{translate('SL')}} {{translate('product Name')}} {{translate('selling_price')}} {{translate('featured')}} {{translate('active_status')}} {{translate('action')}}
{{$products->firstItem()+$k}} {{substr($product['name'],0,20)}}{{strlen($product['name'])>20?'...':''}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product['unit_price']))}} @php($product_name = str_replace("'",'`',$product['name']))
@csrf
@csrf
@csrf @method('delete')
{{$products->links()}}
@if(count($products)==0) @include('layouts.back-end._empty-state',['text'=>'no_product_found'],['image'=>'default']) @endif
@endsection admin-views/vendor/view/review.blade.php000064400000024632150075320660014331 0ustar00@extends('layouts.back-end.app') @section('title', $seller?->shop->name ?? translate("shop_name_not_found")) @section('content')

{{translate('vendor_details')}}

@if ($seller->status=="pending")

{{translate('vendor_request_for_open_a_shop.')}}

@csrf
@csrf
@endif
{{translate('review_table') }} {{ $reviews->total() }}
@foreach($reviews as $key=> $review) @endforeach
{{translate('SL')}} {{translate('product')}} {{translate('review')}} {{translate('rating')}}
{{$reviews->firstItem()+ $key}} @if($review->product) {{$review->product['name']}} @else {{ translate('product_not_found') }} @endif

{{$review->comment ?? translate("no_Comment_Found")}}

@if($review->attachment) @foreach (json_decode($review->attachment) as $img) @endforeach @endif
{{$reviews->links()}}
@if(count($reviews)==0) @include('layouts.back-end._empty-state',['text'=>'no_review_found'],['image'=>'default']) @endif
@endsection admin-views/vendor/view/setting.blade.php000064400000027533150075320660014510 0ustar00@php use Illuminate\Support\Facades\Session; @endphp @extends('layouts.back-end.app') @section('title', $seller?->shop->name ?? translate("shop_name_not_found")) @section('content') @php($direction =Session::get('direction'))

{{translate('vendor_details')}}

@if ($seller->status=="pending")

{{translate('vendor_request_for_open_a_shop')}}.

@csrf
@csrf
@endif
@csrf
{{translate('sales_commission').' '.':'}}
{{translate('if_sales_commission_is_disabled_here_the_system_default_commission_will_be_applied')}}.
@csrf
{{translate('GST_Number').':'}}
{{translate('if_GST_number_is_disabled_here_it_will_not_show_in_invoice')}}.
{{translate('vendor_POS')}}
@csrf
{{translate('vendor_POS_permission')}}
@endsection admin-views/vendor/view/transaction.blade.php000064400000031166150075320660015355 0ustar00@extends('layouts.back-end.app') @section('title',$seller?->shop->name ?? translate("shop_name_not_found")) @section('content')

{{translate('vendor_details')}}

@if ($seller['status']=="pending")

{{ translate('vendor_request_for_open_a_shop') }}
@csrf
@csrf
@endif
{{ translate('transaction_table')}} {{$transactions->total()}}
@php($companyName = getWebConfig('company_name')) @foreach($transactions as $key=>$transaction) @endforeach
{{translate('SL')}} {{translate('vendor_name')}} {{translate('customer_name')}} {{translate('order_id')}} {{translate('transaction_id')}} {{translate('order_amount')}} {{translate('vendor_amount') }} {{translate('admin_commission')}} {{translate('received_by')}} {{translate('delivered_by')}} {{translate('delivery_charge')}} {{translate('payment_method')}} {{translate('tax')}} {{translate('status')}}
{{$transactions->firstItem()+$key}} @if($transaction['seller_is'] == 'admin') {{ $companyName }} @else {{ $transaction?->seller->f_name .' '.$transaction?->seller->l_name }} @endif {{ $transaction->order->is_guest ? translate('guest_customer'):($transaction->order->customer ? $transaction->order->customer->f_name.' '.$transaction->order->customer->l_name : translate('customer_not_found')) }} {{$transaction['order_id']}} {{$transaction['transaction_id']}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['order_amount']))}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['seller_amount']))}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['admin_commission']))}} {{$transaction['received_by']}} {{$transaction['delivered_by']}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['delivery_charge']))}} {{str_replace('_',' ',$transaction['payment_method'])}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['tax']))}} @if($transaction['status'] == 'disburse') {{translate($transaction['status'])}} @else {{translate($transaction['status'])}} @endif
{{$transactions->links()}}
@if(count($transactions)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
@endsection admin-views/vendor/view/order.blade.php000064400000037723150075320660014150 0ustar00@php use Illuminate\Support\Facades\Session; @endphp @extends('layouts.back-end.app') @section('title',$seller?->shop->name ?? translate("shop_name_not_found")) @section('content') @php($direction = Session::get('direction'))

{{translate('vendor_Details')}}

@if ($seller->status=="pending")

{{translate('vendor_request_for_open_a_shop.')}}
@csrf
@csrf
@endif
{{translate('order_info')}}
{{translate('pending')}}
{{ $pendingOrder }}
{{translate('delivered')}}
{{ $deliveredOrder }}
{{translate('all')}}
{{ $orders->total() }}
@foreach($orders as $key=>$order) @endforeach
{{translate('SL')}} {{translate('order')}} {{translate('date')}} {{translate('customer')}} {{translate('payment_status')}} {{translate('total')}} {{translate('order_status')}} {{translate('action')}}
{{$orders->firstItem()+$key}} {{$order['id']}} {{date('d M Y',strtotime($order['created_at']))}} @if($order->is_guest) {{translate('guest_customer')}} @else @if($order->customer) {{$order?->customer['f_name'] ?? ''}} {{$order?->customer['l_name']??''}} @else @endif @endif @if($order->payment_status=='paid') {{translate('paid')}} @else {{translate('unpaid')}} @endif {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order['order_amount']))}} @if($order['order_status']=='pending') {{translate('pending')}} @elseif($order['order_status']=='confirmed') {{translate('confirmed')}} @elseif($order['order_status']=='processing') {{translate('processing')}} @elseif($order['order_status']=='out_for_delivery') {{translate('out_for_delivery')}} @elseif($order['order_status']=='delivered') {{translate('delivered')}} @else {{translate(str_replace('_',' ',$order['order_status']))}} @endif
{!! $orders->links() !!}
@if(count($orders)==0) @include('layouts.back-end._empty-state',['text'=>'no_order_found'],['image'=>'default']) @endif
@endsection admin-views/vendor/view.blade.php000064400000067716150075320660013042 0ustar00@extends('layouts.back-end.app') @section('title', $seller?->shop->name ?? translate("shop_Name")) @section('content')

{{translate('vendor_details')}}

{{translate('image')}}
@if($seller?->shop->temporary_close || ($seller?->shop->vacation_status && $current_date >= date('Y-m-d', strtotime($seller?->shop->vacation_start_date)) && $current_date <= date('Y-m-d', strtotime($seller?->shop->vacation_end_date))))
@if($seller->shop->temporary_close)
{{translate('this_shop_currently_close_now')}}
@elseif($seller->shop->vacation_status && $current_date >= date('Y-m-d', strtotime($seller->shop->vacation_start_date)) && $current_date <= date('Y-m-d', strtotime($seller->shop->vacation_end_date)))
{{translate('this_shop_currently_on_vacation')}}
@endif
@endif

{{ $seller->shop? $seller->shop->name : translate("shop_Name")." : ".translate("update_Please") }}

{{ round($seller->average_rating, 1) }}
{{translate('rating')}}
  • {{'5'.' '.translate('star')}}
    {{$seller->single_rating_5}}
  • {{'4'.' '.translate('star')}}
    {{$seller->single_rating_4}}
  • {{'3'.' '.translate('star')}}
    {{$seller->single_rating_3}}
  • {{'2'.' '.translate('star')}}
    {{$seller->single_rating_2}}
  • {{'2'.' '.translate('star')}}
    {{$seller->single_rating_1}}
{{$seller->total_rating}} {{translate('ratings')}} $seller['id'], 'tab'=>'review']): 'javascript:' }}" class="text-dark">{{$seller->rating_count}} {{translate('reviews')}}
@if ( $seller['status']!="pending" && $seller['status']!="suspended" && $seller['status']!="rejected") {{translate('view_live')}} @endif
@if ($seller['status']=="pending")
@csrf
@csrf
@endif @if ($seller['status']=="approved")
@csrf
@endif @if ($seller['status']=="suspended" || $seller['status']=="rejected")
@csrf
@endif

{{translate('total_products')}} :

{{$seller->product_count}}

{{translate('total_orders')}} :

{{$seller->orders_count}}

{{translate('shop_information')}}

{{translate('shop_name')}} : {{$seller?->shop->name}}
{{translate('phone')}} : {{$seller?->shop->contact}}
{{translate('address')}} : {{$seller?->shop->address}}
{{translate('status')}} : {{ $seller['status']=='approved'? translate('active') : translate('inactive') }}

{{translate('vendor_information')}}

{{translate('name')}} : {{$seller['f_name'].' '.$seller['l_name']}}
{{translate('email')}} : {{$seller['email']}}
{{translate('phone')}} : {{$seller['phone']}}
@if ($seller['status']!="pending")

{{translate('bank_information')}}

{{translate('bank_name')}} : {{ $seller['bank_name'] ?? translate('no_data_found') }}
{{translate('branch')}} : {{ $seller['branch'] ?? translate('no_data_found') }}
{{translate('holder_name')}} : {{ $seller['holder_name'] ?? translate('no_data_found') }}
{{translate('A/C_No')}} : {{ $seller['account_no'] ?? translate('no_data_found') }}
@endif
@if ($seller['status']!="pending")

{{translate('vendor_Wallet')}}

{{ $seller->wallet ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $seller->wallet->total_earning)) : 0 }}

{{translate('withdrawable_balance')}}

{{ $seller->wallet ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $seller->wallet->pending_withdraw)) : 0}}

{{translate('pending_Withdraw')}}

{{ $seller->wallet ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $seller->wallet->commission_given)) : 0}}

{{translate('total_Commission_given')}}

{{$seller->wallet ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $seller->wallet->withdrawn)) : 0}}

{{translate('aready_Withdrawn')}}

{{ $seller->wallet ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $seller->wallet->delivery_charge_earned)) : 0}}

{{translate('total_delivery_charge_earned')}}

{{ $seller->wallet ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $seller->wallet->total_tax_collected)) : 0}}

{{translate('total_tax_given')}}

{{ $seller->wallet ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $seller->wallet->collected_cash)) : 0}}

{{translate('collected_cash')}}
@endif
@endsection admin-views/vendor/add-new-vendor.blade.php000064400000036065150075320660014673 0ustar00@extends('layouts.back-end.app') @section('title', translate('add_new_Vendor')) @push('css_or_js') @endpush @section('content')

{{ translate('add_new_Vendor') }}

@csrf
{{ translate('vendor_information') }}
{{translate('banner_image')}}
{{translate('vendor_Image')}} ({{translate('ratio')}} {{translate('1')}}:{{translate('1')}})
{{translate('account_information')}}
{{translate('repeat_password_not_match').'.'}}
{{translate('shop_information')}}
{{translate('shop_logo')}} ({{translate('ratio').' '.'1:1'}})
{{translate('banner_image')}}
{{translate('shop_banner')}} {{ THEME_RATIO[theme_root_path()]['Store cover Image'] }}
@if(theme_root_path() == "theme_aster")
{{translate('banner_image')}}
{{translate('shop_secondary_banner')}} {{ THEME_RATIO[theme_root_path()]['Store Banner Image'] }}
@endif
@endsection @push('script') @endpush admin-views/vendor/withdraw-methods-create.blade.php000064400000014154150075320660016607 0ustar00@extends('layouts.back-end.app') @section('title', translate('Withdrawal_Methods')) @section('content')

{{translate('withdrawal_methods')}}

@csrf
@endsection @push('script') @endpush admin-views/vendor/order-list.blade.php000064400000032072150075320660014137 0ustar00@extends('layouts.back-end.app') @section('title', translate('order_List')) @section('content')

{{translate('orders')}}

{{$orders->total()}}
{{translate('order_list')}} {{$orders->total()}}
( {{translate('vendor_Name')}} : {{$seller['f_name'].' '.$seller['l_name']}} , {{translate('vendor_Id')}} : {{$seller['id']}} )
@foreach($orders as $key=>$order) @endforeach
{{translate('SL')}} {{translate('order_ID')}} {{translate('order_Date')}} {{translate('customer_Info')}} {{translate('store')}} {{translate('total_Amount')}} {{translate('order_Status')}} {{translate('action')}}
{{$orders->firstItem()+$key}} {{$order['id']}} {!! $order->order_type == 'POS' ? '(POS)' : '' !!}
{{date('d M Y',strtotime($order['created_at']))}},
{{ date("h:i A",strtotime($order['created_at'])) }}
@if($order->is_guest) {{translate('guest_customer')}} @elseif($order->customer_id == 0) {{translate('walking_customer')}} @else @if($order->customer) {{$order->customer['f_name'].' '.$order->customer['l_name']}} {{ $order->customer['phone'] }} @else @endif @endif @if($order->seller_is == 'seller') {{ isset($order->seller->shop) ? $order->seller->shop->name : 'Store not found' }} @elseif($order->seller_is == 'admin') {{translate('in_House')}} @endif
@php($discount = 0) @if($order->order_type == 'default_type' && $order->coupon_discount_bearer == 'inhouse' && !in_array($order['coupon_code'], [0, NULL])) @php($discount = $order->discount_amount) @endif @php($free_shipping = 0) @if($order->is_shipping_free) @php($free_shipping = $order->shipping_cost) @endif {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order->order_amount+$discount+$free_shipping))}}
@if($order->payment_status=='paid') {{translate('paid')}} @else {{translate('unpaid')}} @endif
@if($order['order_status']=='pending') {{translate($order['order_status'])}} @elseif($order['order_status']=='processing' || $order['order_status']=='out_for_delivery') {{str_replace('_',' ',$order['order_status'] == 'processing' ? translate('packaging'):translate($order['order_status']))}} @elseif($order['order_status']=='confirmed') {{translate($order['order_status'])}} @elseif($order['order_status']=='failed') {{translate('failed_to_deliver')}} @elseif($order['order_status']=='delivered') {{translate($order['order_status'])}} @else {{translate($order['order_status'])}} @endif
{!! $orders->links() !!}
@endsection admin-views/vendor/product-list.blade.php000064400000031310150075320660014476 0ustar00@php use Illuminate\Support\Str; @endphp @extends('layouts.back-end.app') @section('title', translate('product_List')) @section('content')

{{translate('vendor_product_list')}} {{ $products->total() }}

{{translate('product_table')}} {{$products->total()}}
@foreach($products as $key=>$product) @endforeach
{{translate('SL')}} {{translate('product Name')}} {{translate('product Type')}} {{translate('purchase_price')}} {{translate('selling_price')}} {{translate('show_as_featured')}} {{translate('active_status')}} {{translate('action')}}
{{$products->firstItem()+$key}} {{Str::limit($product['name'],20)}} {{translate(str_replace('_',' ',$product['product_type']))}} {{setCurrencySymbol(amount:usdToDefaultCurrency(amount: $product['purchase_price']))}} {{setCurrencySymbol(amount:usdToDefaultCurrency(amount: $product['unit_price']))}} @php($product_name = str_replace("'",'`',$product['name']))
@csrf
@csrf
@csrf @method('delete')
{{$products->links()}}
@if(count($products)==0)
{{translate('image_description')}}

{{translate('no_data_to_show')}}

@endif
@endsection admin-views/vendor/withdraw.blade.php000064400000017140150075320660013703 0ustar00@extends('layouts.back-end.app') @section('title', translate('withdraw_request')) @section('content')

{{translate('withdraw')}}

{{ translate('withdraw_request_table')}} {{ $withdrawRequests->total() }}
@foreach($withdrawRequests as $key => $withdrawRequest) @endforeach
{{translate('SL')}} {{translate('amount')}} {{ translate('name') }} {{translate('request_time')}} {{translate('status')}} {{translate('action')}}
{{$withdrawRequests->firstItem() + $key }} {{setCurrencySymbol(currencyConverter($withdrawRequest['amount']), currencyCode: getCurrencyCode(type: 'default'))}} @if (isset($withdrawRequest->seller)) {{ $withdrawRequest->seller->f_name . ' ' . $withdrawRequest->seller->l_name }} @else {{translate('not_found')}} @endif {{$withdrawRequest->created_at}} @if($withdrawRequest->approved == 0) @elseif($withdrawRequest->approved == 1) @elseif($withdrawRequest->approved == 2) @endif
@if (isset($withdrawRequest->seller)) @else {{translate('action_disabled')}} @endif
{{ $withdrawRequests->links() }}
@if(count($withdrawRequests) == 0) @include('layouts.back-end._empty-state',['text'=>'no_withdraw_request_found'],['image'=>'default']) @endif
@endsection admin-views/refund-transaction/refund_transaction_summary_report_pdf.blade.php000064400000024675150075320660024267 0ustar00 {{ translate('refund_Transaction_Summary_Report') }}
{{translate('order_Transaction_Statement')}}
{{translate('date')}} : {{ date('F d, Y') }}
{{translate('duration')}} : {{ $data['duration'] }}
       
{{translate('SL')}} {{translate('details')}} {{translate('amount')}}
1 {{translate('total_expense_amount')}} {{ \App\Utils\BackEndHelper::set_symbol(\App\Utils\BackEndHelper::usd_to_currency($data['total_expense'])) }}
2 {{translate('free_delivery_amount')}} {{ \App\Utils\BackEndHelper::set_symbol(\App\Utils\BackEndHelper::usd_to_currency($data['free_delivery'])) }}
3 {{translate('coupon_discount_amount')}} {{ \App\Utils\BackEndHelper::set_symbol(\App\Utils\BackEndHelper::usd_to_currency($data['coupon_discount'])) }}




























{{translate('phone')}} : {{ $data['company_phone'] }}
{{translate('email')}} : {{ $data['company_email'] }}
{{url('/')}}
{{translate('all_copy_right_reserved_©_'.date('Y').'_').$data['company_name']}}
admin-views/refund-transaction/list.blade.php000064400000023623150075320660015341 0ustar00@php use Illuminate\Support\Str; @endphp @extends('layouts.back-end.app') @section('title',translate('refund_transactions')) @section('content')

{{ translate('transaction_report')}}

@include('admin-views.report.transaction-report-inline-menu')

{{ translate('total_transaction')}} {{$refundTransactions->total()}}

@foreach ($refundTransactions as $key=>$refund_transaction) @endforeach
{{translate('SL')}} {{translate('product')}} {{translate('refund_id')}} {{translate('order_id')}} {{translate('shop_name')}} {{translate('payment_method') }} {{translate('payment_status')}} {{translate('paid_by')}} {{translate('amount')}} {{translate('transaction_type')}}
{{$refundTransactions->firstItem()+$key}} @if($refund_transaction->orderDetails->product) {{ isset($refund_transaction->orderDetails->product->name) ? Str::limit($refund_transaction->orderDetails->product->name, 20) : '' }} @else {{translate('not_found')}} @endif @if ($refund_transaction->refund_id) {{$refund_transaction->refund_id}} @else {{translate('not_found')}} @endif {{$refund_transaction->order_id}} @if($refund_transaction->order->seller_is == 'seller' && $refund_transaction->order->seller) {{ $refund_transaction->order->seller->shop->name }} @else {{translate('inhouse')}} @endif {{translate(str_replace('_',' ',$refund_transaction->payment_method))}} {{translate(str_replace('_',' ',$refund_transaction->payment_status))}} {{translate($refund_transaction->paid_by)}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $refund_transaction->amount), currencyCode: getCurrencyCode())}} {{ $refund_transaction->transaction_type == 'Refund' ? translate('refunded') : str_replace('_',' ',$refund_transaction->transaction_type)}}
@if(count($refundTransactions)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
{{$refundTransactions->links()}}
@endsection admin-views/shiprocket/login.blade.php000064400000004333150075320660014040 0ustar00@extends('layouts.back-end.app') @section('title', translate('shiprocket_login')) @section('content')
@csrf

{{translate('login_to_your_shiprocket_account')}}

@endsection @push('script_2') @endpush admin-views/file-manager/index.blade.php000064400000021674150075320660014222 0ustar00@extends('layouts.back-end.app') @section('title',translate('gallery')) @section('content')

{{translate('file_manager')}}

{{translate('file_manager')}}
{{translate(end($currentFolder))}} {{count($data)}}
@if(end($currentFolder) != 'public') {{translate('back')}} @endif
@foreach($data as $key=>$file)
@if($file['type']=='folder')

{{Str::limit($file['name'],10)}}

@elseif($file['type']=='file') @endif
@endforeach
@endsection @push('script') @endpush admin-views/transaction/total_orders_report_pdf.blade.php000064400000022736150075320660020036 0ustar00 {{ 'Order Report Statement - '.$data['date_type'] }}
{{translate('order_Report_Statement')}}
{{translate('date')}} : {{ date('F d, Y') }}
{{translate('duration')}} : {{ str_replace('_',' ', $data['date_type']) }}
{{translate('vendor_Info')}} : {{ ucfirst($data['seller']) }}
       
{{translate('total_Order')}} : {{ $data['total_orders'] }}
{{ translate('type') }} : {{ ucfirst($data['type']) }}
{{translate('SL')}} {{translate('details')}} {{translate('amount')}}
1 {{translate('total_Ordered_Amount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_order_amount']), currencyCode: getCurrencyCode()) }}
2 {{translate('total_Product_Discount')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_product_discount']), currencyCode: getCurrencyCode()) }}
3 {{translate('total_Coupon_Discount')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_coupon_discount']), currencyCode: getCurrencyCode()) }}
4 {{translate('total_Shipping_Charge')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_delivery_charge']), currencyCode: getCurrencyCode()) }}
5 {{translate('total')}} {{translate('VAT/TAX')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_tax']), currencyCode: getCurrencyCode()) }}
6 {{translate('total_Order_Commission')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_order_commission']), currencyCode: getCurrencyCode()) }}
7 {{translate('total_Deliveryman_Incentive')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_deliveryman_incentive']), currencyCode: getCurrencyCode()) }}
{{----}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{--
{{translate('additional_information')}}{{translate('totals')}}
--}} {{-- {{translate('admin_Discount')}}--}} {{-- --}} {{-- {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_admin_discount']), currencyCode: getCurrencyCode()) }}--}} {{--
--}} {{-- {{ translate('vendor_Discount') }}--}} {{-- --}} {{-- {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_seller_discount']), currencyCode: getCurrencyCode()) }}--}} {{--
--}} {{-- {{ translate('admin_Commission') }}--}} {{-- --}} {{-- {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_admin_commission']), currencyCode: getCurrencyCode()) }}--}} {{--
--}} {{-- {{translate('admin_Net_Income')}}--}} {{-- --}} {{-- {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_admin_net_income']), currencyCode: getCurrencyCode()) }}--}} {{--
--}} {{-- {{translate('vendor_Net_Income')}}--}} {{-- --}} {{-- {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_seller_net_income']), currencyCode: getCurrencyCode()) }}--}} {{--
--}}
{{translate('phone')}} : {{ $data['company_phone'] }}
{{translate('email')}} : {{ $data['company_email'] }}
{{url('/')}}
{{translate('all_copy_right_reserved_©_'.date('Y').'_'). $data['company_name'] }}
admin-views/transaction/wallet-bonus.blade.php000064400000036146150075320660015525 0ustar00@extends('layouts.back-end.app') @section('title', translate('order_Transactions')) @section('content')

{{translate('transaction_report')}}

{{translate('how_it_works')}}
@include('admin-views.report.transaction-report-inline-menu')
{{translate('search_data')}}

{{translate('total_transactions')}}

{{translate('download_PDF')}}
{{translate('SL')}} {{translate('transaction_ID')}} {{translate('transaction_date')}} {{translate('order_ID')}} {{translate('expense_amount')}} {{translate('expense_type')}} {{translate('action')}}
1 21423355 15 May 2020 9:30 am 100234 $ 687.93 Free Delivery
1 21423355 15 May 2020 9:30 am 100234 $ 687.93 Free Delivery
1 21423355 15 May 2020 9:30 am 100234 $ 687.93 Free Delivery
1 21423355 15 May 2020 9:30 am 100234 $ 687.93 Free Delivery
1 21423355 15 May 2020 9:30 am 100234 $ 687.93 Free Delivery
@endsection admin-views/transaction/order_wise_pdf.blade.php000064400000041035150075320660016075 0ustar00 {{ translate('order_Transaction_Statement').' - '.$transaction->order_id }}
{{translate('order_Transaction_Statement')}}
{{translate('date')}} : {{ date('F d, Y') }}
{{translate('date')}} : {{ \Carbon\Carbon::parse($transaction->created_at)->format('d/m/Y') }}
{{translate('vendor_Info')}} : @if($transaction['seller_is'] == 'admin') {{ getWebConfig('company_name') }} @else @if (isset($transaction->seller)) {{ $transaction->seller->shop->name }} @else {{translate('not_found')}} @endif @endif
{{translate('customer_Info')}} : @if (isset($transaction->customer)) {{ $transaction->customer->f_name}} {{ $transaction->customer->l_name }} @elseif($transaction->order->is_guest) {{translate('guest_customer')}} @else {{translate('not_found')}} @endif
       
{{translate('delivered_By')}} : @if($transaction->order->delivery_type =='self_delivery' && !empty($transaction->order->delivery_man_id)) {{translate('delivery_man')}} {{ isset($transaction->order->deliveryMan->seller_id) ? ($transaction->order->deliveryMan->seller_id == 0 ? 'admin':'seller') : '' }} @else {{ $transaction->delivery_type }} @endif
{{translate('payment_Method')}} : @if(in_array($transaction->order->payment_method, ['cash', 'cash_on_delivery', 'pay_by_wallet', 'offline_payment'])) {{ ucfirst(str_replace('_', ' ', $transaction->order->payment_method)) }} @else {{translate('digital_payment')}} @endif
{{translate('payment_Status')}} : {{ ucfirst($transaction->order->payment_status) }}
{{translate('SL')}} {{translate('details')}} {{translate('amount')}}
1 {{translate('total_Product_Amount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order_details_sum_price * $transaction->order_details_sum_qty), currencyCode: getCurrencyCode()) }}
2 {{translate('product_Discount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order_details_sum_discount), currencyCode: getCurrencyCode()) }}
3 {{translate('coupon_Discount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order->discount_amount), currencyCode: getCurrencyCode()) }}
4 {{translate('discounted_Amount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: ($transaction->order_details_sum_price * $transaction->order_details_sum_qty) - $transaction->order_details_sum_discount - (isset($transaction->order->coupon) && $transaction->order->coupon->coupon_type != 'free_delivery'?$transaction->order->discount_amount:0)), currencyCode: getCurrencyCode()) }}
5 {{translate('VAT/TAX')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['tax']), currencyCode: getCurrencyCode()) }}
6 {{translate('delivery_Charge')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order->shipping_cost), currencyCode: getCurrencyCode()) }}
6 {{translate('deliveryman_incentive')}} {{ ($transaction->order->delivery_type=='self_delivery' && $transaction->order->delivery_man_id) ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order->deliveryman_charge), currencyCode: getCurrencyCode()) : setCurrencySymbol(amount: usdToDefaultCurrency(amount: 0), currencyCode: getCurrencyCode()) }}
7 {{translate('order_Amount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order->order_amount), currencyCode: getCurrencyCode()) }}
{{translate('additional_information')}} {{translate('totals')}}
{{translate('admin_Discount')}} @php($admin_coupon_discount = ($transaction->order->coupon_discount_bearer == 'inhouse' && $transaction->order->discount_type == 'coupon_discount') ? $transaction->order->discount_amount : 0) @php($admin_shipping_discount = ($transaction->order->free_delivery_bearer=='admin' && $transaction->order->is_shipping_free) ? $transaction->order->extra_discount : 0) {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $admin_coupon_discount+$admin_shipping_discount), currencyCode: getCurrencyCode()) }}
{{ translate('vendor_Discount') }} @php($seller_coupon_discount = ($transaction->order->coupon_discount_bearer == 'seller' && $transaction->order->discount_type == 'coupon_discount') ? $transaction->order->discount_amount : 0) @php($seller_shipping_discount = ($transaction->order->free_delivery_bearer=='seller' && $transaction->order->is_shipping_free) ? $transaction->order->extra_discount : 0) {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $seller_coupon_discount+$seller_shipping_discount), currencyCode: getCurrencyCode()) }}
{{ translate('admin_Commission') }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['admin_commission']), currencyCode: getCurrencyCode()) }}
{{translate('admin_Net_Income')}} order->deliveryMan) && $transaction->order->deliveryMan->seller_id == '0') { $admin_net_income += $transaction['delivery_charge']; } $admin_net_income += $transaction['admin_commission']; if($transaction->order->delivery_type == 'self_delivery' && ($transaction->order->shipping_responsibility == 'inhouse_shipping' || $transaction->order->seller_is == 'admin')){ $admin_net_income -= $transaction->order->deliveryman_charge; } if ($transaction['seller_is'] == 'seller') { if ($transaction->order->shipping_responsibility == 'inhouse_shipping') { $admin_net_income -= $transaction->order->coupon_discount_bearer == 'inhouse' ? $admin_coupon_discount : 0; $admin_net_income += ($transaction->order->coupon_discount_bearer == 'seller' && $transaction->order->coupon->coupon_type == 'free_delivery') ? $seller_coupon_discount : 0; $admin_net_income += ($transaction->order->free_delivery_bearer == 'seller') ? $seller_shipping_discount : 0; } elseif ($transaction->order->shipping_responsibility == 'sellerwise_shipping') { $admin_net_income -= $transaction->order->coupon_discount_bearer == 'inhouse' ? $admin_coupon_discount : 0; $admin_net_income -= $transaction->order->free_delivery_bearer == 'admin' ? $admin_shipping_discount : 0; } } echo setCurrencySymbol(amount: usdToDefaultCurrency(amount: $admin_net_income), currencyCode: getCurrencyCode()); ?>
{{translate('vendor_Net_Income')}} order->deliveryMan) && $transaction->order->deliveryMan->seller_id != '0') { $seller_net_income += $transaction['delivery_charge']; } if ($transaction['seller_is'] == 'seller') { $seller_net_income += $transaction['order_amount'] + $transaction['tax'] - $transaction['admin_commission']; } if($transaction->order->delivery_type == 'self_delivery' && $transaction->order->shipping_responsibility == 'sellerwise_shipping' && $transaction->order->seller_is == 'seller'){ $seller_net_income -= $transaction->order->deliveryman_charge; } if ($transaction['seller_is'] == 'seller') { if ($transaction->order->shipping_responsibility == 'inhouse_shipping') { $seller_net_income += $transaction->order->coupon_discount_bearer == 'inhouse' ? $admin_coupon_discount : 0; $seller_net_income -= ($transaction->order->coupon_discount_bearer == 'seller' && $transaction->order->coupon->coupon_type == 'free_delivery') ? $admin_coupon_discount : 0; $seller_net_income -= ($transaction->order->free_delivery_bearer == 'seller') ? $admin_shipping_discount : 0; } elseif ($transaction->order->shipping_responsibility == 'sellerwise_shipping') { $seller_net_income += $transaction->order->coupon_discount_bearer == 'inhouse' ? $admin_coupon_discount : 0; $seller_net_income += $transaction->order->free_delivery_bearer == 'admin' ? $admin_shipping_discount : 0; $seller_shipping_discount = 0; } } ?> {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $seller_net_income-$seller_shipping_discount), currencyCode: getCurrencyCode()) }}






{{translate('phone')}} : {{ $company_phone }}
{{translate('email')}} : {{ $company_email }}
{{url('/')}}
{{translate('all_copy_right_reserved_©_'.date('Y').'_').$company_name}}
admin-views/transaction/order_wise_expense_pdf.blade.php000064400000013406150075320660017625 0ustar00 {{ translate('expense_Transaction_Statement').' '.$transaction->order_id }}
{{translate('expense_Transaction_Statement')}}
{{translate('date')}} : {{ date('F d, Y') }}
{{translate('transaction_Date')}} : {{ date_format($transaction->orderTransaction->updated_at, 'd F Y') }}
{{translate('order_ID')}} : {{ $transaction->id }}
     
{{translate('XID')}} : {{ ucfirst($transaction->orderTransaction->transaction_id) }}
{{translate('expense_Type')}} : {{ $transaction->coupon_discount_bearer == 'inhouse'?(isset($transaction->coupon->coupon_type) ? ($transaction->coupon->coupon_type == 'free_delivery' ? 'Free Delivery Promotion':ucwords(str_replace('_', ' ', $transaction->coupon->coupon_type))) : ''):'' }} {{ $transaction->free_delivery_bearer == 'admin'?ucwords(str_replace('_', ' ', $transaction->extra_discount_type)):'' }}
{{translate('SL')}} {{translate('details')}} {{translate('amount')}}
1 {{translate('expense_Amount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: ($transaction->coupon_discount_bearer == 'inhouse'?$transaction->discount_amount:0) + ($transaction->free_delivery_bearer=='admin'?$transaction->extra_discount:0)), currencyCode: getCurrencyCode()) }}






























{{translate('phone')}} : {{ $company_phone }}
{{translate('email')}} : {{ $company_email }}
{{url('/')}}
{{translate('all_copy_right_reserved_©_'.date('Y').'_').$company_name}}
admin-views/transaction/expense_transaction_summary_report_pdf.blade.php000064400000012357150075320660023164 0ustar00 {{ 'Expense Transaction Statement - '.$data['duration'] }}
{{translate('expense_Transaction_Statement')}}
{{translate('date')}} : {{ date('F d, Y') }}
{{translate('duration')}} : {{ $data['duration'] }}        
{{translate('SL')}} {{translate('details')}} {{translate('amount')}}
1 {{translate('total_Expense_Amount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_expense']), currencyCode: getCurrencyCode()) }}
2 {{translate('free_Delivery_Amount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['free_delivery']), currencyCode: getCurrencyCode()) }}
3 {{translate('coupon_Discount_Amount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['coupon_discount']), currencyCode: getCurrencyCode()) }}
4 {{translate('free_Shipping_Over_Order_Amount_Discount')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['free_over_amount_discount']), currencyCode: getCurrencyCode()) }}




























{{translate('phone')}} : {{ $data['company_phone'] }}
{{translate('email')}} : {{ $data['company_email'] }}
{{url('/')}}
{{translate('all_copy_right_reserved_©_'.date('Y').'_').$data['company_name']}}
admin-views/transaction/expense-list.blade.php000064400000031653150075320660015527 0ustar00@extends('layouts.back-end.app') @section('title', translate('expense_transaction')) @section('content')

{{translate('transaction_report')}}

@include('admin-views.report.transaction-report-inline-menu')

{{translate('filter_Data')}}

{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $total_expense), currencyCode: getCurrencyCode()) }}

{{translate('total_Expense')}} img

{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $free_delivery), currencyCode: getCurrencyCode()) }}

{{translate('free_Delivery')}}

{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $coupon_discount), currencyCode: getCurrencyCode()) }}

{{translate('coupon_Discount')}} img
@foreach($expense_transaction_chart['discount_amount'] as $amount) @php($amountArray[] = usdToDefaultCurrency(amount: $amount)) @endforeach
@include('layouts.back-end._apexcharts',['title'=>'expense_Statistics','statisticsValue'=>$amountArray,'label'=>array_keys($expense_transaction_chart['discount_amount']),'statisticsTitle'=>'total_expense_amount'])

{{translate('total_Transactions')}} {{ $expense_transactions_table->total() }}

@foreach($expense_transactions_table as $key=>$transaction) @endforeach
{{translate('SL')}} {{translate('XID')}} {{translate('transaction_Date')}} {{translate('order_ID')}} {{translate('expense_Amount')}} {{translate('expense_Type')}} {{translate('action')}}
{{ $expense_transactions_table->firstItem()+$key }} {{ $transaction->orderTransaction->transaction_id }} {{ date_format($transaction->updated_at, 'd F Y h:i:s a') }} {{$transaction->id}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: ($transaction->coupon_discount_bearer == 'inhouse'?$transaction->discount_amount:0) + ($transaction->free_delivery_bearer=='admin'?$transaction->extra_discount:0)), currencyCode: getCurrencyCode()) }} {{ $transaction->coupon_discount_bearer == 'inhouse'?(isset($transaction->coupon->coupon_type) ? ($transaction->coupon->coupon_type == 'free_delivery' ? 'Free Delivery Promotion':ucwords(str_replace('_', ' ', $transaction->coupon->coupon_type))) : ''):'' }}
{{ $transaction->free_delivery_bearer == 'admin' ? ucwords(str_replace('_', ' ', $transaction->extra_discount_type)):'' }}
{{$expense_transactions_table->links()}}
@if(count($expense_transactions_table)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/transaction/order-list.blade.php000064400000076404150075320660015176 0ustar00@extends('layouts.back-end.app') @section('title', translate('order_Transactions')) @section('content')

{{translate('transaction_report')}}

@include('admin-views.report.transaction-report-inline-menu')

{{translate('filter_Data')}}

{{ $order_data['total_orders'] }}

{{translate('total_Orders')}}
{{ $order_data['in_house_orders'] }}
{{translate('in_House_Orders')}}
{{ $order_data['seller_orders'] }}
{{translate('vendor_Orders')}}
{{ $order_data['total_in_house_products'] }}
{{translate('in_House_Products')}}
{{ $order_data['total_seller_products'] }}
{{translate('vendor_Products')}}

{{ $order_data['total_stores'] }}

{{translate('total_Stores')}}
@foreach($order_transaction_chart['order_amount'] as $amount) @php($amountArray[] = usdToDefaultCurrency(amount: $amount)) @endforeach
@include('layouts.back-end._apexcharts',['title'=>'order_Statistics','statisticsValue'=>$amountArray,'label'=>array_keys($order_transaction_chart['order_amount']),'statisticsTitle'=>'total_order_amount'])
{{translate('payment_Statistics')}}

{{ getCurrencySymbol(currencyCode: getCurrencyCode()) }}{{getFormatCurrency(amount: usdToDefaultCurrency(amount: $payment_data['total_payment'])) }}

{{translate('completed_payments')}}
{{translate('cash_payments')}} ({{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['cash_payment']), currencyCode: getCurrencyCode()) }})
{{translate('digital_payments')}} ({{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['digital_payment']), currencyCode: getCurrencyCode()) }})       
{{translate('wallet')}} ({{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['wallet_payment']), currencyCode: getCurrencyCode()) }})
{{translate('offline_payments')}} ({{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $payment_data['offline_payment']), currencyCode: getCurrencyCode()) }})

{{translate('total_Transactions')}} {{ $transactions->total() }}

@foreach($transactions as $key=>$transaction) @if($transaction->order) @endif @endforeach
{{translate('SL')}} {{translate('order_id')}} {{translate('shop_name')}} {{translate('customer_name')}} {{translate('total_product_amount')}} {{translate('product_discount')}} {{translate('coupon_discount')}} {{translate('discounted_amount')}} {{translate('VAT/TAX')}} {{translate('shipping_charge')}} {{translate('order_amount')}} {{translate('delivered_by')}} {{translate('deliveryman_incentive')}} {{translate('admin_discount')}} {{translate('vendor_discount') }} {{translate('admin_commission') }} {{translate('admin_net_income')}} {{translate('vendor_net_income')}} {{translate('payment_method')}} {{translate('payment_Status')}} {{translate('action')}}
{{$transactions->firstItem()+$key}} {{$transaction['order_id']}} @if($transaction['seller_is'] == 'admin') {{ getWebConfig('company_name') }} @else @if (isset($transaction->seller->shop)) {{ $transaction->seller->shop->name }} @else {{translate('not_found')}} @endif @endif @if (!$transaction->order->is_guest && isset($transaction->customer)) {{ $transaction->customer->f_name}} {{ $transaction->customer->l_name }} @elseif($transaction->order->is_guest) {{translate('guest_customer')}} @else {{translate('not_found')}} @endif {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->orderDetails[0]?->order_details_sum_price??0), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->orderDetails[0]?->order_details_sum_discount??0), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction?->order?->discount_amount??0), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: ($transaction?->orderDetails[0]?->order_details_sum_price??0) - ($transaction?->orderDetails[0]?->order_details_sum_discount??0) - (isset($transaction->order->coupon) && $transaction->order->coupon->coupon_type != 'free_delivery'? $transaction->order->discount_amount:0)), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['tax']), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order->shipping_cost), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction->order->order_amount), currencyCode: getCurrencyCode()) }} {{$transaction['delivered_by']}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: ($transaction->order->delivery_type == 'self_delivery' && $transaction->order->delivery_man_id) ? $transaction->order->deliveryman_charge : 0), currencyCode: getCurrencyCode()) }} @php($admin_coupon_discount = ($transaction->order->coupon_discount_bearer == 'inhouse' && $transaction->order->discount_type == 'coupon_discount') ? $transaction->order->discount_amount : 0) @php($admin_shipping_discount = ($transaction->order->free_delivery_bearer=='admin' && $transaction->order->is_shipping_free) ? $transaction->order->extra_discount : 0) {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $admin_coupon_discount+$admin_shipping_discount), currencyCode: getCurrencyCode()) }} @php($seller_coupon_discount = ($transaction->order->coupon_discount_bearer == 'seller' && $transaction->order->discount_type == 'coupon_discount') ? $transaction->order->discount_amount : 0) @php($seller_shipping_discount = ($transaction->order->free_delivery_bearer=='seller' && $transaction->order->is_shipping_free) ? $transaction->order->extra_discount : 0) {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $seller_coupon_discount + $seller_shipping_discount), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['admin_commission']), currencyCode: getCurrencyCode()) }} order->deliveryMan) && $transaction->order->deliveryMan->seller_id == 0) { $admin_net_income += $transaction['delivery_charge']; } $admin_net_income += $transaction['admin_commission']; if($transaction->order->delivery_type == 'self_delivery' && ($transaction->order->shipping_responsibility == 'inhouse_shipping' || $transaction->order->seller_is == 'admin')){ $admin_net_income -= $transaction->order->deliveryman_charge; } if ($transaction['seller_is'] == 'seller') { if ($transaction->order->shipping_responsibility == 'inhouse_shipping') { $admin_net_income -= $transaction->order->coupon_discount_bearer == 'inhouse' ? $admin_coupon_discount : 0; $admin_net_income += ($transaction->order->coupon_discount_bearer == 'seller' && isset($transaction->order->coupon) && $transaction->order->coupon->coupon_type == 'free_delivery') ? $seller_coupon_discount : 0; $admin_net_income += ($transaction->order->free_delivery_bearer == 'seller') ? $seller_shipping_discount : 0; } elseif ($transaction->order->shipping_responsibility == 'sellerwise_shipping') { $admin_net_income -= $transaction->order->coupon_discount_bearer == 'inhouse' ? $admin_coupon_discount : 0; $admin_net_income -= $transaction->order->free_delivery_bearer == 'admin' ? $admin_shipping_discount : 0; } } ?> {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $admin_net_income), currencyCode: getCurrencyCode()) }} order->deliveryMan) && $transaction->order->deliveryMan->seller_id != '0') { $seller_net_income += $transaction['delivery_charge']; } if ($transaction['seller_is'] == 'seller') { $seller_net_income += $transaction['order_amount'] + $transaction['tax'] - $transaction['admin_commission']; } if($transaction->order->delivery_type == 'self_delivery' && $transaction->order->shipping_responsibility == 'sellerwise_shipping' && $transaction->order->seller_is == 'seller'){ $seller_net_income -= $transaction->order->deliveryman_charge; } if ($transaction['seller_is'] == 'seller') { if ($transaction->order->shipping_responsibility == 'inhouse_shipping') { $seller_net_income += $transaction->order->coupon_discount_bearer == 'inhouse' ? $admin_coupon_discount : 0; $seller_net_income -= ($transaction->order->coupon_discount_bearer == 'seller' && isset($transaction->order->coupon) && $transaction->order->coupon->coupon_type == 'free_delivery') ? $admin_coupon_discount : 0; $seller_net_income -= ($transaction->order->free_delivery_bearer == 'seller') ? $admin_shipping_discount : 0; } elseif ($transaction->order->shipping_responsibility == 'sellerwise_shipping') { $seller_net_income += $transaction->order->coupon_discount_bearer == 'inhouse' ? $admin_coupon_discount : 0; $seller_net_income += $transaction->order->free_delivery_bearer == 'admin' ? $admin_shipping_discount : 0; $seller_shipping_discount = 0; } } ?> {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $seller_net_income-$seller_shipping_discount), currencyCode: getCurrencyCode()) }} {{str_replace('_',' ',$transaction['payment_method'])}}
{{translate(str_replace('_',' ',$transaction['status']))}}
{{$transactions->links()}}
@if(count($transactions)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/transaction/list.blade.php000064400000026624150075320660014064 0ustar00@php use App\Utils\Helpers; @endphp @extends('layouts.back-end.app') @section('content')

{{translate('transaction_table')}} {{$transactions->total()}}

@foreach($transactions as $key=>$transaction) @endforeach
{{translate('SL')}} {{translate('vendor_name')}} {{translate('customer_name')}} {{translate('order_id')}} {{translate('transaction_id')}} {{translate('order_amount')}} {{translate('vendor_amount') }} {{translate('admin_commission')}} {{translate('received_by')}} {{translate('delivered_by')}} {{translate('delivery_charge')}} {{translate('payment_method')}} {{translate('tax')}} {{translate('date')}} {{translate('status')}}
{{$transactions->firstItem()+$key}} @if($transaction['seller_is'] == 'admin') {{ Helpers::get_business_settings('company_name') }} @else @if (isset($transaction->seller)) {{ $transaction->seller->f_name }} {{ $transaction->seller->l_name }} @else {{translate('not_found')}} @endif @endif @if (isset($transaction->customer)) {{ $transaction->customer->f_name}} {{ $transaction->customer->l_name }} @else {{translate('not_found')}} @endif {{$transaction['order_id']}} {{$transaction['transaction_id']}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['order_amount']))}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$transaction['seller_amount']))}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$transaction['admin_commission']))}} {{$transaction['received_by']}} {{$transaction['delivered_by']}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$transaction['delivery_charge']))}} {{str_replace('_',' ',$transaction['payment_method'])}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount:$transaction['tax']))}} {{ date('d M Y',strtotime($transaction['created_at'])) }} @if($transaction['status'] == 'disburse') {{$transaction['status']}} @else {{$transaction['status']}} @endif
@if(count($transactions)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
{{$transactions->links()}}
@endsection @push('script') @endpush admin-views/transaction/order_transaction_summary_report_pdf.blade.php000064400000025702150075320660022626 0ustar00 {{ 'Order Transaction Statement - '.$duration }}
{{translate('order_Transaction_Statement')}}
{{translate('date')}} : {{ date('F d, Y') }}
{{translate('duration')}} : {{ $duration }}
{{translate('vendor_Info')}} : {{ $seller_info }}
{{translate('customer_Info')}} : {{ $customer_info }}
{{translate('status')}} : {{ $status }}
       
{{translate('total_Order')}} : {{ $data['total_orders'] }}
{{translate('in_House_Order')}} : {{ $data['in_house_orders'] }}
{{translate('vendor_Order')}} : {{ $data['seller_orders'] }}
{{translate('total_In-House_Products')}} : {{ $data['total_in_house_products'] }}
{{translate('total_Stores')}} : {{ $data['total_stores'] }}
{{translate('SL')}} {{translate('details')}} {{translate('amount')}}
1 {{translate('total_Ordered_Product_Price')}} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_ordered_product_price']), currencyCode: getCurrencyCode()) }}
2 {{translate('total_Product_Discount')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_product_discount']), currencyCode: getCurrencyCode()) }}
3 {{translate('total_Coupon_Discount')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_coupon_discount']), currencyCode: getCurrencyCode()) }}
4 {{translate('total_Discounted_Amount')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_discounted_amount']), currencyCode: getCurrencyCode()) }}
5 {{translate('total')}} {{translate('VAT/TAX')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_tax']), currencyCode: getCurrencyCode()) }}
6 {{translate('total_Delivery_Charge')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_delivery_charge']), currencyCode: getCurrencyCode()) }}
6 {{translate('total_Deliveryman_incentive')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_deliveryman_incentive']), currencyCode: getCurrencyCode()) }}
7 {{translate('total_Order_Amount')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_order_amount']), currencyCode: getCurrencyCode()) }}
{{translate('additional_information')}} {{translate('totals')}}
{{translate('admin_Discount')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_admin_discount']), currencyCode: getCurrencyCode()) }}
{{ translate('vendor_Discount') }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_seller_discount']), currencyCode: getCurrencyCode()) }}
{{ translate('admin_Commission') }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_admin_commission']), currencyCode: getCurrencyCode()) }}
{{translate('admin_Net_Income')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_admin_net_income']), currencyCode: getCurrencyCode()) }}
{{translate('vendor_Net_Income')}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $data['total_seller_net_income']), currencyCode: getCurrencyCode()) }}

{{translate('phone')}} : {{ $company_phone }}
{{translate('email')}} : {{ $company_email }}
{{url('/')}}
{{translate('all_copy_right_reserved_©_'.date('Y').'_').$company_name}}
admin-views/delivery-man/withdraw/index.blade.php000064400000012014150075320660016104 0ustar00@extends('layouts.back-end.app') @section('title', translate('withdraw_Request')) @push('css_or_js') @endpush @section('content')

{{translate('withdraw_Request')}}

{{ translate('withdraw_Request_Table')}} {{ $withdrawRequests->total() }}
@include('admin-views.delivery-man.withdraw._table')
{{$withdrawRequests->links()}}
@endsection @push('script_2') @endpush admin-views/delivery-man/withdraw/_table.blade.php000064400000005574150075320660016240 0ustar00
@foreach($withdrawRequests as $key=>$withdraw) @endforeach
{{translate('SL')}} {{translate('amount')}} {{translate('name') }} {{translate('request_time')}} {{translate('status')}} {{translate('action')}}
{{$withdrawRequests->firstItem()+$key}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $withdraw['amount']), currencyCode: getCurrencyCode())}} @if ($withdraw->deliveryMan) {{ $withdraw->deliveryMan->f_name . ' ' . $withdraw->deliveryMan->l_name }} @else {{translate('not_found')}} @endif {{ date_format( $withdraw->created_at, 'd-M-Y, h:i:s A') }} @if($withdraw->approved==0) @elseif($withdraw->approved==1) @else @endif
@if (isset($withdraw->deliveryMan)) @else @endif
@if(count($withdrawRequests)==0) @include('layouts.back-end._empty-state',['text'=>'no_withdraw_request_found'],['image'=>'default']) @endif admin-views/delivery-man/withdraw/_details.blade.php000064400000016017150075320660016570 0ustar00

{{translate('withdraw_information')}}

{{translate('withdraw_Amount').' : '}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $details['amount']), currencyCode: getCurrencyCode())}}
{{translate('request_time').' : '}} {{ date_format( $details['created_at'], 'd-M-Y, h:i:s A') }}
{{translate('bank_info')}}
{{translate('bank_name')}}: {{$details?->deliveryMan?->bank_name ?? translate('no_data_found')}}
{{translate('branch')}}: {{$details?->deliveryMan?->branch ?? translate('no_data_found') }}
{{translate('holder_name')}} : {{$details?->deliveryMan?->holder_name ?? translate('no_data_found') }}
{{translate('account_no')}}: {{$details?->deliveryMan?->account_no ?? translate('no_data_found') }}
{{translate('deliveryman_info')}}
{{translate('name')}}: {{$details?->deliveryMan?->f_name.' '.$details?->deliveryMan?->l_name}}
{{translate('email')}}: {{$details?->deliveryMan?->email}}
{{translate('phone')}}: {{$details?->deliveryMan?->phone}}
@if($details['transaction_note'])
{{translate(($details['approved'] == 0 ? 'pending':($details['approved'] ==1 ? 'approved' : 'denied' )).'_'.'Note')}}
{{$details['transaction_note']}}
@endif
@csrf
{{translate('approval_note')}}
@csrf
{{translate('denial_note')}}
@if ($details['approved'] == 0) @endif
admin-views/delivery-man/index.blade.php000064400000033115150075320660014260 0ustar00@extends('layouts.back-end.app') @section('title',translate('add_new_delivery_man')) @section('content')

{{translate('add_new_delivery_man')}}

@csrf
{{translate('general_Information')}}
* ( {{translate('ratio')}} 1:1 )
{{translate('delivery_man_image')}}
{{translate('account_Information')}}
@endsection @push('script_2') @endpush admin-views/delivery-man/order-wise-earning.blade.php000064400000002043150075320660016646 0ustar00@extends('layouts.back-end.app') @section('title', $delivery_man->f_name. ' '. $delivery_man->l_name. ' ' .translate('earning_Statement')) @section('content')

{{translate('earning_Statement')}}

@include('admin-views.delivery-man.pages-inline-menu')

@endsection admin-views/delivery-man/emergency-contact.blade.php000064400000023116150075320660016560 0ustar00@extends('layouts.back-end.app') @section('title',translate('emergency_Contact')) @section('content')

{{translate('emergency_contact')}}

@csrf
{{translate('add_new_contact_information')}}
{{translate('contact_information_table')}} {{ $contacts->count() }}
@foreach($contacts as $contact) @endforeach
{{translate('SL')}} {{translate('name')}} {{translate('phone')}} {{translate('status')}} {{translate('action')}}
{{ $loop->iteration }} {{ $contact['name'] }} {{$contact['country_code'].$contact['phone']}}
@csrf
@csrf @method('delete')
{{ $contacts->links() }}
@if(count($contacts)==0) @include('layouts.back-end._empty-state',['text'=>'no_contact_found'],['image'=>'default']) @endif
@endsection @push('script_2') @endpush admin-views/delivery-man/earning-statement/overview.blade.php000064400000030727150075320660020452 0ustar00@extends('layouts.back-end.app') @section('title', translate('earning_Statement')) @section('content')

{{translate('earning_statement')}}

@include('admin-views.delivery-man.pages-inline-menu')

{{translate('deliveryman_Wallet')}}

{{ $deliveryMan->wallet ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $deliveryMan->wallet->cash_in_hand), currencyCode: getCurrencyCode()) : setCurrencySymbol(amount: 0, currencyCode: getCurrencyCode()) }}

{{translate('cash_in_hand')}}
{{translate('collect_Cash')}}

{{ $deliveryMan->wallet ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $deliveryMan->wallet->current_balance), currencyCode: getCurrencyCode()) : setCurrencySymbol(amount: 0, currencyCode: getCurrencyCode())}}

{{translate('current_balance')}}

{{ $deliveryMan->wallet ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $deliveryMan->wallet->total_withdraw), currencyCode: getCurrencyCode()) : setCurrencySymbol(amount: 0, currencyCode: getCurrencyCode())}}

{{translate('total_withdrawn')}}

{{$deliveryMan->wallet ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $deliveryMan->wallet->pending_withdraw), currencyCode: getCurrencyCode()) : setCurrencySymbol(amount: 0, currencyCode: getCurrencyCode())}}

{{translate('pending_withdraw')}}

{{ $withdrawalableBalance <= 0 ? setCurrencySymbol(amount: 0, currencyCode: getCurrencyCode()) : setCurrencySymbol(amount: usdToDefaultCurrency(amount: $withdrawalableBalance), currencyCode: getCurrencyCode()) }}

{{translate('withdrawable_balance')}}
{{translate('delivery_Man_Account')}}

{{translate('status')}} :

{!! $deliveryMan->is_active == 1?'':'' !!}

{{translate('name')}} :
{{$deliveryMan->f_name}} {{$deliveryMan->l_name}}
{{translate('email')}} :
{{$deliveryMan->email}}
{{translate('phone')}} :
{{$deliveryMan->phone}}
{{translate('bank_info')}}

{{translate('bank_name')}} :

{{$deliveryMan->bank_name ?? translate('no_Data_found')}}

{{translate('branch')}} :
{{$deliveryMan->branch ?? translate('no_Data_found')}}
{{translate('holder_name')}} :
{{$deliveryMan->holder_name ?? translate('no_Data_found')}}
{{translate('account_no')}} :
{{$deliveryMan->account_no ?? translate('no_Data_found')}}
@endsection admin-views/delivery-man/earning-statement/_order-status-history.blade.php000064400000007000150075320660023062 0ustar00 admin-views/delivery-man/earning-statement/earning.blade.php000064400000036474150075320660020234 0ustar00@extends('layouts.back-end.app') @section('title', translate('earning_Statement')) @push('css_or_js') @endpush @section('content')

{{translate('earning_statement')}}

@include('admin-views.delivery-man.pages-inline-menu')

{{ translate('earning') }}

{{ translate('total_earning') }}

{{ $totalEarn ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $totalEarn), currencyCode: getCurrencyCode()) : setCurrencySymbol(amount: 0, currencyCode: getCurrencyCode()) }}

{{ translate('withdrawable_balance') }}

{{ $withdrawalableBalance <= 0 ? setCurrencySymbol(amount: 0, currencyCode: getCurrencyCode()) : setCurrencySymbol(amount: usdToDefaultCurrency(amount: $withdrawalableBalance), currencyCode: getCurrencyCode()) }}

{{ translate('already_withdrawn') }}

{{ $deliveryMan->wallet? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $deliveryMan->wallet->total_withdraw), currencyCode: getCurrencyCode()) : setCurrencySymbol(amount: 0, currencyCode: getCurrencyCode()) }}

{{ translate('cash_in_hand') }}

{{ $deliveryMan->wallet ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $deliveryMan->wallet->cash_in_hand), currencyCode: getCurrencyCode()) : setCurrencySymbol(amount: 0, currencyCode: getCurrencyCode()) }}

{{ translate('earning_history') }} {{ $orders->total() }}

{{ translate('Default') }}
@include('admin-views.delivery-man.earning-statement._table')
@endsection @push('script') @endpush admin-views/delivery-man/earning-statement/collect-cash.blade.php000064400000012464150075320660021143 0ustar00@extends('layouts.back-end.app') @section('title',translate('collect_Cash')) @section('content')

{{translate('collect_Cash')}}

@csrf
{{translate('collect_Cash')}}
{{translate('total_Cash_In_Hand')}}:
{{ $deliveryMan['wallet'] ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $deliveryMan->wallet->cash_in_hand), currencyCode: getCurrencyCode(type: 'default')) : 0 }}
@foreach($transactions as $transaction) @endforeach
{{translate('SL')}} {{translate('delivery_man_name')}} {{translate('amount')}} {{translate('transaction_date')}}
{{ $loop->iteration }} {{ $deliveryMan['f_name']. ' ' .$deliveryMan['l_name'] }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $transaction['credit']), currencyCode: getCurrencyCode(type: 'default')) }} {{ date_format( $transaction['created_at'], 'd-M-Y, h:i:s A') }}
{!! $transactions->links() !!}
@if(count($transactions)==0) @include('layouts.back-end._empty-state',['text'=>'no_order_found'],['image'=>'default']) @endif
@endsection admin-views/delivery-man/earning-statement/_table.blade.php000064400000012572150075320660020030 0ustar00
@foreach($orders as $key=>$order) @endforeach
{{ translate('SL') }} {{ translate('order_no') }} {{ translate('earning') }} {{ translate('earning_status') }} {{ translate('payment_method') }} {{ translate('status') }}
{{ $orders->firstItem()+$key }}
{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order->deliveryman_charge), currencyCode: getCurrencyCode()) }}
@if($order['order_status'] == 'delivered' && $order['payment_status']=='paid') {{translate('received')}} @else {{translate('not_received')}} @endif
{{translate($order['payment_method'])}}
@if($order['order_status']=='pending') {{translate($order['order_status'])}} @elseif($order['order_status']=='out_for_delivery') {{translate(str_replace('_',' ',$order['order_status']))}} @elseif($order['order_status']=='processing') {{translate(str_replace('_',' ',$order['order_status']))}} @elseif($order['order_status']=='confirmed') {{translate($order['order_status'])}} @elseif($order['order_status']=='failed') {{translate('Failed_To_Deliver')}} @elseif($order['order_status']=='delivered') {{translate($order['order_status'])}} @else {{translate($order['order_status'])}} @endif
{{ $orders->links() }}
@if(count($orders)==0)
{{translate('image_description')}}

{{translate('no_data_to_show')}}

@endif
admin-views/delivery-man/earning-statement/active-log.blade.php000064400000022704150075320660020632 0ustar00@extends('layouts.back-end.app') @section('title', translate('earning_Statement')) @section('content')

{{translate('earning_statement')}}

@include('admin-views.delivery-man.pages-inline-menu')

{{ translate('order_list') }} {{ $orders->total() }}

@foreach($orders as $key => $order) @endforeach
{{ translate('SL') }} {{ translate('order_no') }} {{ translate('current_status') }} {{ translate('history') }}
{{ $orders->firstItem()+$key }} @if($order['order_status']=='pending') {{translate($order['order_status'])}} @elseif($order['order_status']=='processing' || $order['order_status']=='out_for_delivery') {{translate(str_replace('_',' ',$order['order_status'] == 'processing' ? 'packaging':$order['order_status']))}} @elseif($order['order_status']=='confirmed') {{translate($order['order_status'])}} @elseif($order['order_status']=='failed') {{translate('Failed_To_Deliver')}} @elseif($order['order_status']=='delivered') {{translate($order['order_status'])}} @else {{translate($order['order_status'])}} @endif
{{ $orders->links() }}
@if(count($orders)==0) @include('layouts.back-end._empty-state',['text'=>'no_order_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/delivery-man/rating.blade.php000064400000036644150075320660014447 0ustar00@extends('layouts.back-end.app') @section('title', translate('delivery_Man_Review')) @section('content')

{{$deliveryMan['f_name']. ' '. $deliveryMan['l_name']}}

{{translate('image_description')}}

{{number_format($averageRating, 2, '.', ' ')}}

{{translate('of')}} {{$reviews->count()?? 0}} {{translate('reviews')}}

  • {{translate('5')}} {{ translate('star') }}
    {{$five}}
  • {{translate('4')}} {{ translate('star') }}
    {{$four}}
  • {{translate('3')}} {{ translate('star') }}
    {{$three}}
  • {{translate('2')}} {{ translate('star') }}
    {{$two}}
  • {{translate('1')}} {{ translate('star') }}
    {{$one}}
@foreach($reviews as $key=> $review) @endforeach
{{translate('SL')}} {{translate('order_ID')}} {{translate('reviewer')}} {{translate('review')}} {{translate('date')}}
{{$reviews->firstItem()+$key}} {{ $review->order_id }}
{{('image_description')}}
{{$review?->customer['f_name']." ".$review?->customer['l_name']}} {{$review?->customer->email??""}}
@if(strlen($review['comment']) > 200)) {{ substr($review['comment'], 0, 200) }} ...{{ translate('show_more') }} {{substr($review['comment'], 200)}} {{ translate('show_less') }} @else {{ $review['comment'] }} @endif
{{date('d M Y H:i:s',strtotime($review['updated_at']))}}
{{ $reviews->links() }}
@if(count($reviews)==0) @include('layouts.back-end._empty-state',['text'=>'no_review_found'],['image'=>'default']) @endif
@endsection @push('script_2') @endpush admin-views/delivery-man/partials/_update-emergency-contact.blade.php000064400000004642150075320660022021 0ustar00 admin-views/delivery-man/edit.blade.php000064400000037171150075320660014104 0ustar00@extends('layouts.back-end.app') @section('title', translate('update_delivery_man')) @section('content')

{{translate('update_Deliveryman')}}

@csrf
{{translate('general_Information')}}
* ( {{translate('ratio')}} 1:1 )
@if($deliveryMan['identity_image']) @foreach(json_decode($deliveryMan['identity_image'],true) as $img)
@endforeach @endif
{{translate('account_Information')}}
{{translate('repeat_password_not_match').'.'}}
@endsection @push('script_2') @endpush admin-views/delivery-man/pages-inline-menu.blade.php000064400000001402150075320660016460 0ustar00 admin-views/delivery-man/view.blade.php000064400000025154150075320660014127 0ustar00@extends('layouts.admin.app') @section('title','Delivery Man Preview') @section('content')
Image Description

{{count($dm->rating)>0?number_format($dm->rating[0]->average, 2, '.', ' '):0}}

of {{$dm->reviews->count()}} {{translate('reviews')}}

    @php($total=$dm->reviews->count())
  • @php($five=\App\CentralLogics\Helpers::dm_rating_count($dm['id'],5)) 5 star
    {{$five}}
  • @php($four=\App\CentralLogics\Helpers::dm_rating_count($dm['id'],4)) 4 star
    {{$four}}
  • @php($three=\App\CentralLogics\Helpers::dm_rating_count($dm['id'],3)) 3 star
    {{$three}}
  • @php($two=\App\CentralLogics\Helpers::dm_rating_count($dm['id'],2)) 2 star
    {{$two}}
  • @php($one=\App\CentralLogics\Helpers::dm_rating_count($dm['id'],1)) 1 star
    {{$one}}
@foreach($reviews as $review) @endforeach
{{translate('reviewer')}} {{translate('review')}} {{translate('attachment')}} {{translate('date')}}
Image Description
{{$review->customer['f_name']." ".$review->customer['l_name']}} {{$review->customer->email}}

{{$review['comment']}}

@foreach(json_decode($review['attachment'],true) as $attachment) @endforeach {{date('d M Y H:i:s',strtotime($review['created_at']))}}
@endsection admin-views/delivery-man/chat.blade.php000064400000000000150075320660014053 0ustar00admin-views/delivery-man/list.blade.php000064400000027121150075320660014124 0ustar00@extends('layouts.back-end.app') @section('title',translate('deliveryman_List')) @section('content')

{{translate('delivery_man')}} {{ $deliveryMens->total() }}

@foreach($deliveryMens as $key => $deliveryMen) @endforeach
{{translate('SL')}} {{translate('name')}} {{translate('contact info')}} {{translate('total_Orders')}} {{translate('rating')}} {{translate('status')}} {{translate('action')}}
{{$deliveryMens->firstitem()+$key}} {{ $deliveryMen->orders_count }} {{ isset($deliveryMen->rating[0]->average) ? number_format($deliveryMen->rating[0]->average, 2, '.', ' ') : 0 }}
@csrf
@csrf @method('delete')
{!! $deliveryMens->links() !!}
@if(count($deliveryMens)==0) @include('layouts.back-end._empty-state',['text'=>'no_delivery_man_found'],['image'=>'default']) @endif
@endsection @push('script_2') @endpush admin-views/system-settings/software-update.blade.php000064400000014441150075320660017052 0ustar00@extends('layouts.back-end.app') @section('title', translate('software_update')) @section('content')

{{translate('system_setup')}}

@include('admin-views.business-settings.system-settings-inline-menu')
{{translate('upload_the_updated_file')}} img
@csrf
{{translate('0').'%'}}
@php($conditionOne=str_replace('M','',ini_get('upload_max_filesize'))>=180 && str_replace('M','',ini_get('upload_max_filesize'))>=180) @php($conditionTwo=str_replace('M','',ini_get('post_max_size'))>=200 && str_replace('M','',ini_get('post_max_size'))>=200) @if($conditionOne && $conditionTwo)
@else
@endif
@endsection @push('script') @endpush admin-views/contacts/view.blade.php000064400000020546150075320660013351 0ustar00@extends('layouts.back-end.app') @section('title', translate('contact_View')) @section('content')

{{translate('message_view')}}

{{translate('user_details')}}
@csrf
@if($contact->seen==0) @else @endif
{{$contact->subject}} @if($contact->seen==1) @else @endif
{{translate('name')}}: {{$contact['name']}}
{{translate('mobile_no')}}: {{$contact['mobile_number']}}
{{translate('email')}}: {{$contact['email']}}
{{translate('message_Log')}}
{{ $contact->name }}
{{translate('subject')}}:
{{$contact->subject}}
{{translate('message')}}:
{{$contact->message}}
{{translate('admin')}}
@if($contact['reply']!=null) @php($data=json_decode($contact['reply'],true))
{{translate('subject')}}:
{{$data['subject']}}
{{translate('message')}}:
{{$data['body']}}
@else @endif

{{translate('send_Mail')}}

@csrf
@endsection admin-views/contacts/list.blade.php000064400000012461150075320660013347 0ustar00@extends('layouts.back-end.app') @section('title', translate('contact_List')) @push('css_or_js') @endpush @section('content')

{{translate('customer_message')}}

{{translate('customer_message_table')}} {{ $contacts->total() }}
{{ translate('Filter') }}
@include('admin-views.contacts._table')
@endsection @push('script') @endpush admin-views/contacts/_table.blade.php000064400000006427150075320660013627 0ustar00
@foreach($contacts as $key => $contact) @endforeach
{{translate('SL')}} {{translate('customer_Name')}} {{translate('contact_Info')}} {{translate('subject')}} {{translate('time_&_Date')}} {{translate('reply_status')}} {{translate('action')}}
{{$contacts->firstItem()+$key}} {{$contact['name']}}
{{$contact['mobile_number']}}
{{$contact['email']}}
{{$contact['subject']}}
{{date('d M,Y h:i A',strtotime($contact['created_at']))}}
@if(empty($contact['reply'])) {{translate('No')}} @else {{translate('Yes')}} @endif
{{$contacts->links()}}
@if(count($contacts)==0)
{{translate('image_description')}}

{{translate('no_data_to_show')}}

@endif admin-views/banner/edit.blade.php000064400000031163150075320660012750 0ustar00@extends('layouts.back-end.app') @section('title', translate('banner')) @section('content')

{{ translate('banner_update_form') }}

{{ translate('back') }}
@endsection @push('script') @endpush admin-views/banner/view.blade.php000064400000056454150075320660013007 0ustar00@extends('layouts.back-end.app') @section('title', translate('banner')) @push('css_or_js') @endpush @section('content')

{{ translate('banner_Setup') }} ({{str_replace("_", " ", theme_root_path()) }})

{{ translate('banner_form') }}
@endsection @push('script') @endpush admin-views/reviews/list.blade.php000064400000035410150075320660013214 0ustar00@extends('layouts.back-end.app') @section('title', translate('review_List')) @section('content')

{{translate('customer_reviews')}}

{{ translate('review_table') }} {{ $reviews->total() }}
@foreach ($reviews as $key => $review) @endforeach
{{ translate('SL') }} {{ translate('product') }} {{ translate('customer') }} {{ translate('rating') }} {{ translate('review') }} {{ translate('date') }} {{ translate('status') }}
{{ $reviews->firstItem()+$key }} @if(isset($review->product)) {{ Str::limit($review->product['name'], 25) }} @else {{ translate('product_not_found') }} @endif @if ($review->customer) {{ $review->customer->f_name . ' ' . $review->customer->l_name }} @else @endif
{{ $review->comment ? Str::limit($review->comment, 35) : translate('no_comment_found') }}

@if($review->attachment)
@foreach (json_decode($review->attachment) as $img) {{translate('image')}} @endforeach
@endif
{{ date('d M Y', strtotime($review->created_at)) }}
{!! $reviews->links() !!}
@if(count($reviews)==0) @include('layouts.back-end._empty-state',['text'=>'no_review_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/system/dashboard.blade.php000064400000022637150075320660014037 0ustar00@php use App\Utils\Helpers; @endphp @extends('layouts.back-end.app') @section('title', translate('dashboard')) @push('css_or_js') @endpush @section('content') @if(auth('admin')->user()->admin_role_id==1 || Helpers::module_permission_check('dashboard'))

{{translate('business_analytics')}}

@include('admin-views.partials._dashboard-order-status',['data'=>$data])

{{translate('admin_wallet')}}

@include('admin-views.partials._dashboard-wallet-stats',['data'=>$data])
@include('admin-views.system.partials.order-statistics')

{{translate('user_overview')}}

{{$data['getTotalCustomerCount']+$data['getTotalVendorCount']+$data['getTotalDeliveryManCount']}}

{{translate('user')}}
{{translate('customer').' '.'('.$data['getTotalCustomerCount'].')'}}
{{translate('vendor').' '.'('.$data['getTotalVendorCount'].')'}}
{{translate('delivery_man').' '.'('.$data['getTotalDeliveryManCount'].')'}}
@include('admin-views.system.partials.earning-statistics')
@include('admin-views.partials._top-customer',['top_customer'=>$data['top_customer']])
@include('admin-views.partials._top-store-by-order',['top_store_by_order_received'=>$data['top_store_by_order_received']])
@include('admin-views.partials._top-selling-store',['topVendorByEarning'=>$data['topVendorByEarning']])
@include('admin-views.partials._most-rated-products',['mostRatedProducts'=>$data['mostRatedProducts']])
@include('admin-views.partials._top-selling-products',['topSellProduct'=>$data['topSellProduct']])
@include('admin-views.partials._top-delivery-man',['topRatedDeliveryMan'=>$data['topRatedDeliveryMan']])
@else
@endif @endsection @push('script') @endpush admin-views/system/partials/earning-statistics.blade.php000064400000004751150075320660017537 0ustar00

{{translate('earning_statistics')}}

admin-views/system/partials/order-statistics.blade.php000064400000004632150075320660017225 0ustar00

{{translate('order_statistics')}}

admin-views/order/order-details.blade.php000064400000316474150075320660014442 0ustar00@extends('layouts.back-end.app') @section('title', translate('order_Details')) @push('css_or_js') @endpush @section('content') @php($shippingAddress = $order['shipping_address_data'] ?? null)

{{translate('order_Details')}}

{{translate('Order_ID')}} #{{$order['id']}}

{{date('d M, Y , h:i A',strtotime($order['created_at']))}}
@if ($linkedOrders->count() >0)
{{translate('linked_orders')}} ({{$linkedOrders->count()}}) :
@foreach($linkedOrders as $linked) {{$linked['id']}} @endforeach
@endif
@if ($order->verification_images && count($order->verification_images)>0 && $order->verification_status ==1)
@endif @if (getWebConfig('map_api_status') == 1 && isset($shippingAddress->latitude) && isset($shippingAddress->longitude))
@endif {{translate('print_Invoice')}}
{{translate('status')}}: @if($order['order_status']=='pending') {{translate(str_replace('_',' ',$order['order_status']))}} @elseif($order['order_status']=='failed') {{translate(str_replace('_',' ',$order['order_status'] == 'failed' ? 'Failed to Deliver' : ''))}} @elseif($order['order_status']=='processing' || $order['order_status']=='out_for_delivery') {{translate(str_replace('_',' ',$order['order_status'] == 'processing' ? 'Packaging' : $order['order_status']))}} @elseif($order['order_status']=='delivered' || $order['order_status']=='confirmed') {{translate(str_replace('_',' ',$order['order_status']))}} @else {{translate(str_replace('_',' ',$order['order_status']))}} @endif
{{translate('payment_Method')}} : {{translate($order['payment_method'])}}
@if($order->payment_method != 'cash_on_delivery' && $order->payment_method != 'pay_by_wallet' && !isset($order->offlinePayments))
{{translate('reference_Code')}} : {{str_replace('_',' ',$order['transaction_ref'])}} {{ $order->payment_method == 'offline_payment' ? '('.$order->payment_by.')':'' }}
@endif
{{translate('payment_Status')}}: @if($order['payment_status']=='paid') {{translate('paid')}} @else {{translate('unpaid')}} @endif
@if(getWebConfig('order_verification')) {{translate('order_verification_code')}} : {{$order['verification_code']}} @endif
@if ($order->order_note !=null)

{{translate('order_Note')}}:

{{$order->order_note}}
@endif
@php($item_price=0) @php($total_price=0) @php($subtotal=0) @php($total=0) @php($shipping=0) @php($discount=0) @php($tax=0) @php($row=0) @foreach($order->details as $key=>$detail) @php($productDetails = $detail?->product ?? json_decode($detail->product_details) ) @if($productDetails) @php($subtotal=$detail['price']*$detail['qty']+$detail['tax']-$detail['discount']) @php($item_price+=$detail['price']*$detail['qty']) @php($discount+=$detail['discount']) @php($tax+=$detail['tax']) @php($total+=$subtotal) @endif @php($sellerId=$detail->seller_id) @if(isset($productDetails->digital_product_type) && $productDetails->digital_product_type == 'ready_after_sell') @php($product_details = json_decode($detail->product_details)) @endif @endforeach
{{translate('SL')}} {{translate('item_details')}} {{translate('item_price')}} {{translate('tax')}} {{translate('item_discount')}} {{translate('total_price')}}
{{ ++$row }}
{{translate('image_Description')}}
{{substr($productDetails->name, 0, 30)}}{{strlen($productDetails->name)>10?'...':''}}
{{translate('qty')}} : {{$detail['qty']}}
{{translate('unit_price')}} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail->price+( $detail->tax_model =='include' ? $detail->tax : 0)), currencyCode: getCurrencyCode())}} @if ($detail->tax_model =='include') ({{translate('tax_incl.')}}) @else ({{translate('tax').":".($productDetails->tax)}}{{$productDetails->tax_type ==="percent" ? '%' :''}}) @endif
@if ($detail->variant)
{{translate('variation')}} : {{$detail['variant']}}
@endif
@if(isset($productDetails->digital_product_type) && $productDetails->digital_product_type == 'ready_after_sell') @endif
{{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail['price']*$detail['qty']), currencyCode: getCurrencyCode()) }} {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail['tax']), currencyCode: getCurrencyCode()) }} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail['discount']), currencyCode: getCurrencyCode())}}{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $subtotal), currencyCode: getCurrencyCode())}}
@php($shipping=$order['shipping_cost']) @php($coupon_discount = $order['discount_amount'])
{{translate('item_price')}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item_price), currencyCode: getCurrencyCode())}}
{{translate('item_discount')}}
- {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $discount), currencyCode: getCurrencyCode())}}
{{translate('sub_total')}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $item_price-$discount), currencyCode: getCurrencyCode())}}
{{translate('coupon_discount')}}
{{(!in_array($order['coupon_code'], [0, NULL]) ? '('.translate('expense_bearer_').($order['coupon_discount_bearer']=='inhouse' ? 'admin' : ($order['coupon_discount_bearer'] =='seller'? 'vendor' : $order['coupon_discount_bearer'])).')': '' )}}
-{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $coupon_discount), currencyCode: getCurrencyCode())}}
{{translate('vat')}}/{{translate('tax')}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $tax), currencyCode: getCurrencyCode())}}
{{translate('delivery_fee')}}
{{($order['is_shipping_free'] ? '('.translate('expense_bearer_').($order['free_delivery_bearer'] == 'seller' ? 'vendor' : $order['free_delivery_bearer']).')': '' )}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $shipping), currencyCode: getCurrencyCode())}}
@php($delivery_fee_discount = 0) @if ($order['is_shipping_free']) @php($delivery_fee_discount = $shipping) @endif
{{translate('total')}}
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $total+$shipping-$coupon_discount -$delivery_fee_discount), currencyCode: getCurrencyCode())}}
@if($order->payment_method == 'offline_payment' && isset($order->offlinePayments))

{{translate('Payment_Information')}}

@foreach ($order->offlinePayments->payment_info as $key=>$item) @if (isset($item) && $key != 'method_id') @endif @endforeach
{{translate('payment_Method')}} : {{ translate($order['payment_method']) }}
{{translate($key)}} : {{ $item }}
@if(isset($order->payment_note) && $order->payment_method == 'offline_payment')

{{translate('payment_Note')}}:

{{ $order->payment_note }}

@endif
@endif

{{translate('order_&_Shipping_Info')}}

{{translate('payment_status')}}
{{ $order->payment_status=='paid' ? translate('paid'):translate('unpaid')}}
@if($physicalProduct)
  • @if ($order->shipping_type == 'order_wise') @endif
  • @if (isset($order->deliveryMan))
    {{translate('Image')}}
    {{ $order->deliveryMan?->f_name.' '.$order->deliveryMan?->l_name}}
    {{$order->deliveryMan?->phone}}
    @else
    {{translate('Image')}}
    {{translate('no_delivery_man_assigned')}}
    @endif
  • @if (isset($order->deliveryMan))
  • @endif
  • {{translate('image')}}
    {{$order->delivery_service_name ?? translate('not_assign_yet')}}
    {{translate('track_ID').' '.':'.' '.$order->third_party_delivery_tracking_id}}
@endif
@if(!$order->is_guest && $order->customer)

{{translate('customer_information')}}

{{translate('Image')}}
{{$order->customer['f_name'].' '.$order->customer['l_name']}} {{ $orderCount }} {{translate('orders')}} {{$order->customer['phone']}} {{$order->customer['email']}}
@endif @if($physicalProduct)
@if($shippingAddress)

{{translate('shipping_address')}}

@if($order['order_status'] != 'delivered') @endif
{{translate('name')}} : {{$shippingAddress->contact_person_name}} {{ $order->is_guest ? '('. translate('guest_customer') .')':''}}
{{translate('contact')}} : {{$shippingAddress->phone}}
@if ($order->is_guest && $shippingAddress->email)
{{translate('email')}} : {{$shippingAddress->email}}
@endif
{{translate('country')}} : {{$shippingAddress->country}}
{{translate('city')}} : {{$shippingAddress->city}}
{{translate('zip_code')}} : {{$shippingAddress->zip}}
{{$shippingAddress->address ?? translate('empty')}}
@else
{{translate('no_shipping_address_found')}}
@endif
@endif
@php($billing=$order['billing_address_data']) @if($billing)

{{translate('billing_address')}}

@if($order['order_status'] != 'delivered') @endif
{{translate('name')}} : {{$billing->contact_person_name}} {{ $order->is_guest ? '('. translate('guest_customer') .')':''}}
{{translate('contact')}} : {{$billing->phone}}
@if ($order->is_guest && $billing->email)
{{translate('email')}} : {{$billing->email}}
@endif
{{translate('country')}} : {{$billing->country}}
{{translate('city')}} : {{$billing->city}}
{{translate('zip_code')}} : {{$billing->zip}}
{{$billing->address}}
@else
{{translate('no_billing_address_found')}}
@endif

{{translate('shop_Information')}}

@if($order->seller_is == 'admin')
{{ $companyName }}
{{ $totalDelivered }} {{translate('orders_Served')}}
@else @if(!empty($order->seller->shop))
{{ $order->seller->shop->name }}
{{ $totalDelivered }} {{translate('orders_Served')}} {{ $order->seller->shop->contact }}
{{ $order->seller->shop->address }}
@else
{{translate('image_description')}}

{{ translate('no_shop_found').'!'}}

@endif @endif
@if ($order->verification_images && count($order->verification_images)>0) @endif @if($billing) @endif customer['l_name']??""}}}"> @endsection @push('script_2') @if(getWebConfig('map_api_status') ==1 ) @endif @endpush admin-views/order/list.blade.php000064400000055504150075320660012651 0ustar00@extends('layouts.back-end.app') @section('title', translate('order_List')) @section('content')

@if($status =='processing') {{translate('packaging')}} @elseif($status =='failed') {{translate('failed_to_Deliver')}} @elseif($status == 'all') {{translate('all')}} @else {{translate(str_replace('_',' ',$status))}} @endif {{translate('orders')}}

{{$orders->total()}}

{{translate('filter_order')}}

@if(request('delivery_man_id')) @endif
{{translate('reset')}}
{{translate('order_list')}} {{$orders->total()}}
@if($status == 'all') @else @endif @foreach($orders as $key=>$order) @if($status == 'all') @else @endif @endforeach
{{translate('SL')}} {{translate('order_ID')}} {{translate('order_date')}} {{translate('customer_info')}} {{translate('store')}} {{translate('total_amount')}}{{translate('order_status')}} {{translate('payment_method')}} {{translate('action')}}
{{$orders->firstItem()+$key}} {{$order['id']}} {!! $order->order_type == 'POS' ? '(POS)' : '' !!}
{{date('d M Y',strtotime($order['created_at']))}},
{{ date("h:i A",strtotime($order['created_at'])) }}
@if($order->is_guest) {{translate('guest_customer')}} @elseif($order->customer_id == 0) {{translate('walking_customer')}} @else @if($order->customer) {{$order->customer['f_name'].' '.$order->customer['l_name']}} @if($order->customer['phone']) {{ $order->customer['phone'] }} @else {{ $order->customer['email'] }} @endif @else @endif @endif @if(isset($order->seller->shop)) @if($order->seller_is == 'seller') {{ isset($order->seller->shop) ? $order->seller->shop->name : translate('Store_not_found') }} @elseif($order->seller_is == 'admin') {{translate('in_House')}} @endif @else {{ translate('Store_not_found') }} @endif
@php($discount = 0) @if($order->order_type == 'default_type' && $order->coupon_discount_bearer == 'inhouse' && !in_array($order['coupon_code'], [0, NULL])) @php($discount = $order->discount_amount) @endif @php($free_shipping = 0) @if($order->is_shipping_free) @php($free_shipping = $order->shipping_cost) @endif {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $order->order_amount), currencyCode: getCurrencyCode())}}
@if($order->payment_status=='paid') {{translate('paid')}} @else {{translate('unpaid')}} @endif
@if($order['order_status']=='pending') {{translate($order['order_status'])}} @elseif($order['order_status']=='processing' || $order['order_status']=='out_for_delivery') {{str_replace('_',' ',$order['order_status'] == 'processing' ? translate('packaging'):translate($order['order_status']))}} @elseif($order['order_status']=='confirmed') {{translate($order['order_status'])}} @elseif($order['order_status']=='failed') {{translate('failed_to_deliver')}} @elseif($order['order_status']=='delivered') {{translate($order['order_status'])}} @else {{translate($order['order_status'])}} @endif {{str_replace('_',' ',$order['payment_method'])}}
{!! $orders->links() !!}
@if(count($orders) == 0) @include('layouts.back-end._empty-state',['text'=>'no_order_found'],['image'=>'default']) @endif
@endsection @push('script_2') @endpush admin-views/order/invoice.blade.php000064400000070622150075320660013330 0ustar00@php use Illuminate\Support\Facades\Session; $currencyCode = getCurrencyCode(type: 'default'); $direction = Session::get('direction'); $lang = getDefaultLanguage(); @endphp {{ translate('invoice')}}
{{ translate('Invoice')}}
{{ translate('invoice_Date')}} : {{date('M d ,Y',strtotime($order['created_at']))}}
{{getWebConfig('shop_address')}}
@if($invoiceSettings?->business_identity)
{{$invoiceSettings?->business_identity}} : {{$invoiceSettings?->business_identity_value }}
@endif @if($order['seller_is']!='admin' && isset($order['seller']) && $order['seller']->gst != null)
{{translate('GST')}} : {{ $order['seller']->gst }}
@endif

@if ($order->order_type == 'default_type') @if($order->billing_address_data) @endif @else @endif
{{ translate('order')}} #{{ $order->id }}
{{ translate('date')}} : {{date('M d, Y',strtotime($order['created_at']))}}
{{translate('invoice_of')}} {{' ( '.$currencyCode.' )'}}
{{ webCurrencyConverter(amount: $order->order_amount) }}
{{ translate('payment')}}
{{ str_replace('_',' ',$order->payment_method) }}
@if(!empty($order->transaction_ref))
{{ translate('reference_ID')}}
{{ $order->transaction_ref }}
@endif @if($order->offlinePayments)
@foreach ($order->offlinePayments?->payment_info as $key=>$item) @if (isset($item) && $key != 'method_id')
{{ str_replace('_',' ',$key)}}
{{ $item }}
@endif @endforeach @endif
billing_address_data ?> {{ translate('billed_To')}} ({{translate($billingAddress->address_type)}})
{{$billingAddress->contact_person_name}}
{{$billingAddress->phone}}
{{$billingAddress->address}}
{{$billingAddress->city}} {{$billingAddress->zip}}
@if($order->shipping_address_data) shipping_address_data; ?> {{translate('shipping_To')}} ({{translate($shipping_address->address_type)}})
{{$shipping_address->contact_person_name}}
{{$shipping_address->phone}}
{{$shipping_address->address}}
{{ $shipping_address->city }} {{ $shipping_address->zip }}
@else {{ translate('customer_Info')}}
@if($order->is_guest)
{{translate('guest_User')}}
@else
{{ $order->customer !=null? $order->customer['f_name'].' '.$order->customer['l_name']:translate('name_not_found') }}
@endif @if (isset($order->customer) && $order->customer['id']!=0)
{{$order->customer !=null? $order->customer['email']: translate('email_not_found')}}
{{$order->customer !=null? $order->customer['phone']: translate('phone_not_found')}}
@endif
@endif
{{ translate('order')}} #{{ $order->id }}
{{ translate('date')}} : {{date('M d, Y',strtotime($order['created_at']))}}
{{translate('customer_Name')}}
{{ $order->customer !=null? $order->customer['f_name'].' '.$order->customer['l_name']:translate('Name_not_found')}}
{{translate('Phone')}}
{{$order->customer !=null? $order->customer['phone']: translate('phone_not_found')}}
{{translate('payment')}}
{{ translate($order->payment_status) }}
{{translate('invoice_of')}} {{' ( '.$currencyCode.' )'}}
{{ webCurrencyConverter(amount: $order->order_amount) }}
 
@foreach($order->details as $key=>$details) @php($productDetails = $details?->product ?? json_decode($details->product_details) ) @php($itemPrice += $details['price'] * $details['qty']) shipping ? $details->shipping->cost : 0; $totalDiscountOnProduct += $details['discount']; $total += $subTotal; ?> @endforeach
{{ translate('item_Description')}} {{ translate('qty')}} {{ translate('unit_Price')}} {{ translate('total')}}
{{$productDetails->name}}
@if($details['variant'])
{{ translate('variation')}} : {{$details['variant']}} @endif
{{$details->qty}}
{{ webCurrencyConverter(amount: $details['price']) }}
{{ webCurrencyConverter(amount: $details['price'] * $details['qty']) }}
@php($shipping=$order['shipping_cost'])
@if($order->order_type == 'default_type') @endif @if ($order->order_type != 'default_type') @endif
{{ translate('total_Item_Price')}} {{ webCurrencyConverter(amount: $itemPrice) }}
{{ translate('product_Discount')}} - {{ webCurrencyConverter(amount: $totalDiscountOnProduct) }}
{{ translate('sub_Total')}} {{ webCurrencyConverter(amount: $subTotal) }}
{{ translate('shipping')}} {{webCurrencyConverter(amount: $shipping - ($order->is_shipping_free ? $order->extra_discount : 0)) }}
{{ translate('coupon_Discount')}} - {{ webCurrencyConverter(amount: $order->discount_amount) }}
{{ translate('tax')}} {{ webCurrencyConverter(amount: $totalTax) }}
{{ translate('extra_Discount')}} - {{ webCurrencyConverter(amount: $extraDiscount) }}
{{ translate('total')}} {{ webCurrencyConverter(amount: $order->order_amount) }}
{{translate('thanks_for_the_purchase').'.'}}

@if($invoiceSettings?->terms_and_condition)
{{ translate('terms_&_Conditions') }}
{{$invoiceSettings?->terms_and_condition.'.'}}
@endif
admin-views/refund/details.blade.php000064400000065052150075320660013472 0ustar00@extends('layouts.back-end.app') @section('title', translate('refund_details')) @push('css_or_js') @endpush @section('content')

{{translate('refund_details')}}

{{translate('refund_summary')}}

  • {{translate('refund_id')}} : {{$refund->id}}
  • {{translate('refund_requested_date')}} : {{date('d M Y, h:s:A',strtotime($refund['created_at']))}}
  • {{translate('refund_status')}} : @if ($refund['status'] == 'pending') {{translate($refund['status'])}} @elseif($refund['status'] == 'approved') {{translate($refund['status'])}} @elseif($refund['status'] == 'refunded') {{translate($refund['status'])}} @elseif($refund['status'] == 'rejected') {{translate($refund['status'])}} @endif
  • {{translate('payment_method')}} : {{str_replace('_',' ',$order->payment_method)}}
  • {{translate('order_details')}} : {{translate('view_details')}}

{{translate('product_details')}}

@if($refund['status'] != 'refunded') @if($refund['status'] != 'rejected') @endif @if($refund['status'] != 'approved') @endif @endif

@if ($refund->product!=null) {{$refund->product->name}} @else {{translate('product_name_not_found')}} @endif

@if ($refund->orderDetails->variant)
{{translate('variation')}} : {{$refund->orderDetails->variant}}
@endif @if($refund->orderDetails->digital_file_after_sell) @php($downloadPath =dynamicStorage(path: 'storage/app/public/product/digital-product/'.$refund->orderDetails->digital_file_after_sell)) {{translate('download')}} @endif
  • {{translate('QTY')}} : {{$refund->orderDetails->qty}}
  • {{translate('total_price')}} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $refund->orderDetails->price*$refund->orderDetails->qty), currencyCode: getCurrencyCode())}}
  • {{translate('total_discount')}} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $refund->orderDetails->discount), currencyCode: getCurrencyCode())}}
  • {{translate('coupon_discount')}} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $couponDiscount), currencyCode: getCurrencyCode())}}
  • {{translate('total_tax')}} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $refund->orderDetails->tax), currencyCode: getCurrencyCode())}}
  • {{translate('subtotal')}} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $subtotal), currencyCode: getCurrencyCode())}}
  • {{translate('refundable_amount')}} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $refundAmount), currencyCode: getCurrencyCode())}}

{{translate('refund_reason_by_customer')}}

{{$refund->refund_reason}}

@if ($refund->images) @endif
@if($order?->seller)

{{translate('vendor_info')}}

{{translate('shop_name')}}: {{$order->seller?->shop->name ?? translate('no_data_found')}}
@endif

{{translate('deliveryman_info')}}

@if($order->deliveryMan)
{{translate('name')}}: {{$order->deliveryMan->f_name . ' ' .$order->deliveryMan->l_name}}
{{translate('email_address')}}: {{$order->deliveryMan?->email }}
{{translate('phone_number')}} : {{$order->deliveryMan?->phone }}
@else
{{translate('image')}}
{{translate('no_delivery_man_assigned')}}
@endif

{{translate('refund_status_changed_log')}}

@foreach ($refund->refundStatus as $key=>$status) @endforeach
{{translate('SL')}} {{translate('changed_by')}} {{translate('Date')}} {{translate('status')}} {{translate('approved_/_rejected_note')}}
{{$key+1}} {{$status->change_by == 'seller' ? 'vendor' : $status->change_by}} {{date('d M Y, h:s:A',strtotime($refund['created_at']))}} {{translate($status->status)}}
{{$status->message}}
@if(count($refund->refundStatus)==0)
{{translate('image_description')}}

{{ translate('no_data_to_show')}}

@endif
@endsection @push('script_2') @endpush admin-views/refund/list.blade.php000064400000023645150075320660013022 0ustar00@php use Illuminate\Support\Str; @endphp @extends('layouts.back-end.app') @section('title',translate('refund_requests')) @section('content')

{{translate($status.'_'.'refund_Requests')}} {{$refundList->total()}}

@foreach($refundList as $key=>$refund) @endforeach
{{translate('SL')}} {{translate('refund_ID')}} {{translate('order_id')}} {{translate('product_info')}} {{translate('customer_info')}} {{translate('total_amount')}} {{translate('action')}}
{{$refundList->firstItem()+$key}} {{$refund['id']}} {{$refund->order_id}} @if ($refund->product !=null)
{{Str::limit($refund->product->name,35)}} {{translate('QTY')}} : {{ $refund->orderDetails->qty }}
@else {{translate('product_name_not_found')}} @endif
@if ($refund->customer !=null) @else {{translate('customer_not_found')}} @endif
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $refund->amount), currencyCode: getCurrencyCode())}}
{!! $refundList->links() !!}
@if(count($refundList) == 0) @include('layouts.back-end._empty-state',['text'=>'no_refund_request_found'],['image'=>'default']) @endif
@endsection admin-views/coupon/edit.blade.php000064400000024141150075320660013004 0ustar00@extends('layouts.back-end.app') @section('title', translate('coupon_Edit')) @section('content')

{{translate('coupon_update')}}

@csrf
{{translate('generate_code')}}
@endsection @push('script') @endpush admin-views/coupon/details-quick-view.blade.php000064400000005657150075320660015601 0ustar00
{{ $coupon->title }}
{{translate('code')}} : {{ $coupon->code }}
{{translate(str_replace('_',' ',$coupon->coupon_type))}}
{{translate('minimum_purchase')}} : {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $coupon->min_purchase), currencyCode: getCurrencyCode()) }}
@if($coupon->coupon_type != 'free_delivery' && $coupon->discount_type == 'percentage')
{{translate('maximum_discount')}} : {{ setCurrencySymbol(amount: usdToDefaultCurrency(amount: $coupon->max_discount), currencyCode: getCurrencyCode()) }}
@endif
{{translate('start_date')}} : {{ \Carbon\Carbon::parse($coupon->start_date)->format('dS M Y') }}
{{translate('expire_date')}} : {{ \Carbon\Carbon::parse($coupon->expire_date)->format('dS M Y') }}
{{translate('discount_bearer')}} : @if($coupon->coupon_bearer == 'inhouse') {{ translate('admin') }} @elseif($coupon->coupon_bearer == 'seller') {{ translate('vendor') }} @endif
@if($coupon->coupon_type == 'free_delivery') {{translate('free_delivery')}} @else

{{$coupon->discount_type=='amount' ? setCurrencySymbol(amount: usdToDefaultCurrency(amount: $coupon->discount), currencyCode: getCurrencyCode()) : $coupon->discount.'%'}}

{{translate('off')}} @endif
admin-views/coupon/add-new.blade.php000064400000052253150075320660013403 0ustar00@extends('layouts.back-end.app') @section('title', translate('coupon_Add')) @section('content')

{{translate('coupon_setup')}}

@csrf
{{translate('generate_code')}}
{{translate('coupon_list')}} {{ $coupons->total() }}
@foreach($coupons as $key => $coupon ) @endforeach
{{translate('SL')}} {{translate('coupon')}} {{translate('coupon_type')}} {{translate('duration')}} {{translate('user_limit')}} {{translate('discount_bearer')}} {{translate('status')}} {{translate('action')}}
{{$coupons->firstItem() + $key }}
{{substr($coupon['title'],0,20)}}
{{translate('code')}}: {{$coupon['code']}}
{{translate(str_replace('_',' ',$coupon['coupon_type']))}}
{{date('d M, y',strtotime($coupon['start_date']))}} - {{date('d M, y',strtotime($coupon['expire_date']))}}
{{translate('limit')}}: {{ $coupon['limit'] }}, {{translate('used')}}: {{ $coupon['order_count'] }} {{ translate($coupon['coupon_bearer'] == 'inhouse' ? 'admin':$coupon['coupon_bearer']) }}
@csrf @method('delete')
{{$coupons->links()}}
@if(count($coupons)==0) @include('layouts.back-end._empty-state',['text'=>'no_coupon_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/shipping-method/index.blade.php000064400000060262150075320660014766 0ustar00@extends('layouts.back-end.app') @section('title', translate('shipping_method')) @section('content')

{{translate('business_setup')}}

@include('admin-views.business-settings.business-setup-inline-menu')
{{translate('shipping')}}
@php($shippingMethod=getWebConfig('shipping_method'))
@csrf
@php($shippingType =isset($adminShipping)? $adminShipping['shipping_type']:'order_wise')

{{translate('note').' '.':'}} {{translate('when_adding_a_product_a_product_specific_shipping_charge_is_added_Verify_that_all_of_the_products_delivery_costs_are_up_to_date').'.'}}

{{translate('category_wise_shipping_cost')}}
@csrf @php($sl =0) @foreach ($allCategoryShippingCost as $key=>$item) @if($item->category) @endif @endforeach
{{translate('SL')}} {{translate('image')}} {{translate('category_name')}} {{translate('cost_per_product')}} {{translate('status')}}
{{++$sl}} {{$item->category->name}}
{{translate('add_order_wise_shipping')}}
@csrf
{{translate('order_wise_shipping_method')}} {{ $shippingMethods->count() }}
@foreach($shippingMethods as $key=>$method) @endforeach
{{translate('SL')}} {{translate('title')}} {{translate('duration')}} {{translate('cost')}} {{translate('status')}} {{translate('action')}}
{{$key+1}} {{$method['title']}} {{$method['duration']}} {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $method['cost']), currencyCode: getCurrencyCode(type: 'default'))}}
@csrf
@if(count($shippingMethods)==0) @include('layouts.back-end._empty-state',['text'=>'no_data_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush admin-views/shipping-method/by-seller.blade.php000064400000017161150075320660015555 0ustar00@extends('layouts.back-end.app') @push('css_or_js') @endpush @section('content')
{{translate('shipping_method_table')}} ( {{translate('suggested')}} )
@foreach($shipping_methods as $k=>$method) @endforeach
{{translate('SL')}}# {{translate('title')}} {{translate('duration')}} {{translate('cost')}} {{translate('status')}} {{translate('action')}}
{{$k+1}} {{$method['title']}}
{{translate('by')}} : {{$method->seller->f_name??""}} {{$method->seller->l_name??""}}
{{$method['duration']}} {{\App\Utils\BackEndHelper::usd_to_currency($method['cost']) .\App\Utils\BackEndHelper::currency_symbol()}}
@endsection @push('script') @endpush admin-views/shipping-method/update-view.blade.php000064400000005672150075320660016115 0ustar00@extends('layouts.back-end.app') @section('title', translate('shipping_method')) @section('content')

{{translate('shipping_method_update')}}

@csrf
@endsection admin-views/shipping-method/add-new.blade.php000064400000022707150075320660015200 0ustar00@extends('layouts.back-end.app') @push('css_or_js') @endpush @section('content')
{{translate('shipping_method_form')}}
@csrf
{{translate('shipping_method_table')}}
@foreach($shipping_methods as $k=>$method) @endforeach
{{translate('SL')}}# {{translate('title')}} {{translate('duration')}} {{translate('cost')}} {{translate('status')}} {{translate('action')}}
{{$k+1}} {{$method['title']}} {{$method['duration']}} {{\App\Utils\BackEndHelper::set_symbol(\App\Utils\BackEndHelper::usd_to_currency($method['cost']))}}
@endsection @push('script') @endpush admin-views/addons/index.blade.php000064400000050314150075320660013134 0ustar00@extends('layouts.back-end.app') @section('title', translate('system_Addons')) @push('css_or_js') @endpush @section('content')

{{translate('system_setup')}}

{{ translate('how_the_setting_works') }}
@include('admin-views.business-settings.theme-and-addon-menu')

{{translate('upload_Addons')}}

@csrf
{{translate('0').'%'}}
@php($conditionOne=str_replace('MB','',ini_get('upload_max_filesize'))>=20 && str_replace('MB','',ini_get('upload_max_filesize'))>=20) @php($conditionTwo=str_replace('MB','',ini_get('post_max_size'))>=20 && str_replace('MB','',ini_get('post_max_size'))>=20)
{{ translate('instructions') }}
  • {{ translate('please_make_sure').','.translate('your_server_php').'"'.translate('upload_max_filesize').'"'.translate('value_is_grater_or_equal_to_20MB').'.'.translate('current_value_is').'-'.ini_get('upload_max_filesize').'B' }}
  • {{ translate('please_make_sure').','.translate('your_server_php').'"'.translate('post_max_size').'"'.translate('value_is_grater_or_equal_to_20MB').'.'.translate('current_value_is') .'-'.ini_get('post_max_size').'B'}}
@if($conditionOne && $conditionTwo)
@else
@endif
@foreach($addons as $key => $addon) @php($data = include $addon.'/Addon/info.php')

{{ ucwords(str_replace('_', ' ', $data['name'])) }}

@if ($data['is_published'] == 0) @endif
@endforeach
@endsection @push('script') @endpush admin-views/addons/partials/activation-modal-data.blade.php000064400000003375150075320660020013 0ustar00 layouts/admin/app.blade.php000064400000000041150075320660011672 0ustar00@include('layouts.back-end.app') layouts/back-end/_apexcharts.blade.php000064400000002611150075320660013774 0ustar00@php use Carbon\Carbon; @endphp

{{translate($title)}}

@isset($average)
{{ translate('average_Earning_Value') }} : {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: array_sum($chartEarningStatistics)/count($chartEarningStatistics)), currencyCode: getCurrencyCode()) }}
@endisset
layouts/back-end/_translator-for-js.blade.php000064400000007473150075320660015234 0ustar00 layouts/back-end/app-seller.blade.php000064400000023102150075320660013535 0ustar00 @yield('title') @if (Session::get('direction') === 'rtl') @endif @stack('css_or_js') @include('layouts.back-end.partials._front-settings')
@include('layouts.back-end.partials-seller._header') @include('layouts.back-end.partials-seller._side-bar')
@yield('content') @include('layouts.back-end.partials-seller._footer') @include('layouts.back-end.partials-seller._modals') @include('layouts.back-end.partials-seller._toggle-modal') @include('layouts.back-end._translator-for-js') @include('layouts.back-end.partials-seller._sign-out-modal') @include('layouts.back-end._alert-message')
{!! Toastr::message() !!} @if ($errors->any()) @endif @if(env('APP_MODE') == 'demo') @endif @stack('script') @stack('script_2') layouts/back-end/partials/_footer.blade.php000064400000003730150075320660014752 0ustar00 layouts/back-end/partials/_header.blade.php000064400000045642150075320660014714 0ustar00@php use Illuminate\Support\Facades\Session; @endphp @php($direction = Session::get('direction'))
layouts/back-end/partials/_side-bar.blade.php000064400000325532150075320660015151 0ustar00@php use App\Enums\ViewPaths\Admin\Brand;use App\Enums\ViewPaths\Admin\BusinessSettings;use App\Enums\ViewPaths\Admin\Category;use App\Enums\ViewPaths\Admin\Chatting;use App\Enums\ViewPaths\Admin\Currency;use App\Enums\ViewPaths\Admin\Customer;use App\Enums\ViewPaths\Admin\CustomerWallet;use App\Enums\ViewPaths\Admin\Dashboard; use App\Enums\ViewPaths\Admin\DatabaseSetting;use App\Enums\ViewPaths\Admin\DealOfTheDay;use App\Enums\ViewPaths\Admin\DeliveryMan;use App\Enums\ViewPaths\Admin\DeliverymanWithdraw;use App\Enums\ViewPaths\Admin\DeliveryRestriction;use App\Enums\ViewPaths\Admin\Employee;use App\Enums\ViewPaths\Admin\EnvironmentSettings;use App\Enums\ViewPaths\Admin\FeatureDeal;use App\Enums\ViewPaths\Admin\FeaturesSection;use App\Enums\ViewPaths\Admin\FlashDeal;use App\Enums\ViewPaths\Admin\GoogleMapAPI;use App\Enums\ViewPaths\Admin\HelpTopic;use App\Enums\ViewPaths\Admin\InhouseProductSale;use App\Enums\ViewPaths\Admin\Mail;use App\Enums\ViewPaths\Admin\OfflinePaymentMethod;use App\Enums\ViewPaths\Admin\Order; use App\Enums\ViewPaths\Admin\Pages;use App\Enums\ViewPaths\Admin\Product;use App\Enums\ViewPaths\Admin\PushNotification;use App\Enums\ViewPaths\Admin\Recaptcha;use App\Enums\ViewPaths\Admin\RefundRequest;use App\Enums\ViewPaths\Admin\SiteMap;use App\Enums\ViewPaths\Admin\SMSModule;use App\Enums\ViewPaths\Admin\SocialLoginSettings;use App\Enums\ViewPaths\Admin\SocialMedia;use App\Enums\ViewPaths\Admin\SoftwareUpdate;use App\Enums\ViewPaths\Admin\SubCategory;use App\Enums\ViewPaths\Admin\SubSubCategory;use App\Enums\ViewPaths\Admin\ThemeSetup; use App\Enums\ViewPaths\Admin\Vendor; use App\Enums\ViewPaths\Admin\InhouseShop; use App\Enums\ViewPaths\Admin\SocialMediaChat; use App\Enums\ViewPaths\Admin\ShippingMethod; use App\Enums\ViewPaths\Admin\PaymentMethod; use App\Enums\ViewPaths\Admin\InvoiceSettings; use App\Utils\Helpers; use App\Enums\EmailTemplateKey; @endphp
layouts/back-end/partials/_front-settings.blade.php000064400000000000150075320660016425 0ustar00layouts/back-end/partials/_toggle-modal.blade.php000064400000005431150075320660016027 0ustar00 layouts/back-end/partials/_sign-out-modal.blade.php000064400000002573150075320660016317 0ustar00 layouts/back-end/partials/_modals.blade.php000064400000004176150075320660014740 0ustar00 layouts/back-end/_empty-state.blade.php000064400000000354150075320660014110 0ustar00
Image Description

{{ translate($text)}}

layouts/back-end/_alert-message.blade.php000064400000005733150075320660014373 0ustar00
@if(env('APP_MODE') == 'demo')
{{ translate('warning').'!'}}
{{translate('though_it_is_a_demo_site').'.'.translate('_our_system_automatically_reset_after_one_hour_&_that’s_why_you_logged_out').'.'}}
@endif
{{ translate('Warning').'!'}}
layouts/back-end/partials-seller/_footer.blade.php000064400000000637150075320660016241 0ustar00 layouts/back-end/partials-seller/_header.blade.php000064400000072137150075320660016177 0ustar00@php use Illuminate\Support\Facades\Session; use Illuminate\Support\Str; use Illuminate\Support\Carbon; @endphp @php($direction = Session::get('direction'))
layouts/back-end/partials-seller/_side-bar.blade.php000064400000112537150075320660016434 0ustar00@php use App\Enums\ViewPaths\Vendor\Chatting; use App\Enums\ViewPaths\Vendor\Product; use App\Enums\ViewPaths\Vendor\Profile; use App\Enums\ViewPaths\Vendor\Refund; use App\Enums\ViewPaths\Vendor\Review; use App\Enums\ViewPaths\Vendor\DeliveryMan; use App\Enums\ViewPaths\Vendor\EmergencyContact; use App\Models\Order; use App\Models\RefundRequest; use App\Models\Shop; use App\Enums\ViewPaths\Vendor\Order as OrderEnum; @endphp
layouts/back-end/partials-seller/_toggle-modal.blade.php000064400000005431150075320660017313 0ustar00 layouts/back-end/partials-seller/_sign-out-modal.blade.php000064400000002603150075320660017575 0ustar00 layouts/back-end/partials-seller/_modals.blade.php000064400000004123150075320660016214 0ustar00 layouts/back-end/app.blade.php000064400000020636150075320660012262 0ustar00@php use App\Utils\Helpers; use Carbon\Carbon; @endphp @yield('title') @if(Session::get('direction') === "rtl") @endif @stack('css_or_js') @if(Request::is('admin/payment/configuration/addon-payment-get')) @endif @include('layouts.back-end.partials._front-settings')
@include('layouts.back-end.partials._header') @include('layouts.back-end.partials._side-bar') @include('layouts.back-end._translator-for-js')
@yield('content') @include('layouts.back-end.partials._footer') @include('layouts.back-end.partials._modals') @include('layouts.back-end.partials._toggle-modal') @include('layouts.back-end.partials._sign-out-modal') @include('layouts.back-end._alert-message')
{!! Toastr::message() !!} @if ($errors->any()) @endif @stack('script') @if(Helpers::module_permission_check('order_management') && env('APP_MODE')!='dev') @endif @if(env('APP_MODE') == 'demo') @endif @stack('script_2') layouts/blank.blade.php000064400000004452150075320660011123 0ustar00 @yield('title')
@yield('content')
{!! Toastr::message() !!} installation/step6.blade.php000064400000002641150075320660012074 0ustar00@extends('layouts.blank') @section('content')

6valley Software Installation

All Done, Great Job. Your software is ready to run.
Configure the following setting to run the system properly
  • Business Setting
  • MAIL Setting
  • Payment Gateway Configuration
  • SMS Gateway Configuration
  • 3rd Party APIs
@php($adminLoginUrl = getWebConfig(name: 'admin_login_url')) Landing Page Admin Panel
@endsection installation/step3.blade.php000064400000015464150075320660012100 0ustar00@extends('layouts.blank') @section('content')

{{ "6valley Software Installation" }}

{{ "Please proceed step by step with proper data according to instructions" }}
{{ "Step 3." }}
{{ "Update Database Information" }}

{{ "Provide your database information." }} {{ "Where to get this information ?" }}

@if (isset($error) || session()->has('error'))
{{ "Invalid Database Credentials or Host. Please check your database credentials carefully." }}
@elseif(session()->has('success'))
{{session('success') }}
@endif
@csrf
@endsection installation/step5.blade.php000064400000020731150075320660012073 0ustar00@extends('layouts.blank') @section('content')

{{ "6valley Software Installation" }}

{{ "Please proceed step by step with proper data according to instructions" }}
{{ "Step 5." }}
{{ "Admin Account Settings" }}

{{ "These information will be used to create" }} {{ "super admin credential" }} {{ "for your admin panel." }}

@csrf
@endsection installation/step0.blade.php000064400000007723150075320660012074 0ustar00@extends('layouts.blank') @section('content')

{{ "6valley Software Installation" }}

{{ "Please proceed step by step with proper data according to instructions" }}

{{ "Before starting the installation process please collect this information. Without this information, you won’t be able to complete the installation process" }}

{{ "Required Database Information" }}
{{ "Where to get this information ?" }}
{{ "Database Name" }}
{{ "Database Password" }}
{{ "Database Username" }}
{{ "Database Host Name" }}

{{ "Are you ready to start installation process ?" }}

{{ "Get Started" }}
@endsection installation/step2.blade.php000064400000010243150075320660012065 0ustar00@extends('layouts.blank') @section('content')

{{ "6valley Software Installation" }}

{{ "Please proceed step by step with proper data according to instructions" }}
{{ "Step 2." }}
{{ "Update Purchase Information" }}

{{ "Provide your" }} {{ "username of codecanyon" }} {{ "& the purchase code" }}

@csrf
@endsection installation/step1.blade.php000064400000022571150075320660012073 0ustar00@extends('layouts.blank') @section('content')

{{ "6valley Software Installation" }}

{{ "Please proceed step by step with proper data according to instructions" }}
{{ "Step 1." }}
{{ "Check & Verify File Permissions" }}
{{ "Required Database Information" }}
{{ "PHP Version 8.0 +" }} @php($phpVersion = number_format((float)phpversion(), 2, '.', '')) @if ($phpVersion >= 8.0) @else @endif
{{ "Curl Enabled" }} @if ($permission['curl_enabled']) @else @endif
{{ ".env File Permission" }} @if ($permission['db_file_write_perm']) @else @endif
{{ "RouteServiceProvider.php File Permission" }} @if ($permission['routes_file_write_perm']) @else @endif

{{ "All the permissions are provided successfully ?" }}

@if ($permission['curl_enabled'] == 1 && $permission['db_file_write_perm'] == 1 && $permission['routes_file_write_perm'] == 1 && $phpVersion >= 8.0) {{ "Proceed Next" }} @endif
@endsection installation/step4.blade.php000064400000005337150075320660012077 0ustar00@extends('layouts.blank') @section('content')

{{ "6valley Software Installation" }}

{{ "Please proceed step by step with proper data according to instructions" }}
{{ "Step 4." }}
{{ "Import Database" }}

{{ "Your Database has been connected ! Just click on the section to automatically import database" }}

@if(session()->has('error'))
{{ "Your database is not clean, do you want to clean database then import ?" }}
@else @endif
@endsection payment/payment-view-marcedo-pogo.blade.php000064400000023707150075320660015014 0ustar00 @yield('title')

{{ "Card Payment" }}

{{ "Amount to be paid" }} {{ $data->currency_code }} {{ $data->payment_amount }}

{{ "Buyer Details" }}


{{ "Card Details" }}

/


{{ "Loading, please wait..." }}


payment/layouts/master.blade.php000064400000001045150075320660012777 0ustar00 {{ "Payment" }} @stack('script') @yield('content') payment/senang-pay.blade.php000064400000003417150075320660012053 0ustar00@extends('payment.layouts.master') @section('content') @if(isset($config))

{{ "Please do not refresh this page..." }}

@php($secretkey = $config->secret_key) @php($data = new \stdClass()) @php($data->merchantId = $config->merchant_id) @php($data->amount = $payment_data->payment_amount) @php($data->name = $payer->name??'') @php($data->email = $payer->email ??'') @php($data->phone = $payer->phone ??'') @php($data->hashed_string = md5($secretkey . urldecode($data->amount) ))
@endif @endsection payment/razor-pay.blade.php000064400000002351150075320660011731 0ustar00@extends('payment.layouts.master') @section('content')

{{ "Please do not refresh this page..." }}

@csrf
@endsection payment/paystack.blade.php000064400000002662150075320660011631 0ustar00@extends('payment.layouts.master') @section('content')

{{ "Please do not refresh this page..." }}

@csrf
@endsection payment/paytm.blade.php000064400000001511150075320660011134 0ustar00@extends('payment.layouts.master') @section('content')

{{ "Please do not refresh this page..." }}

@foreach($paramList as $name => $value) @endforeach
@endsection payment/stripe.blade.php000064400000002234150075320660011313 0ustar00@extends('payment.layouts.master') @push('script') @endpush @section('content')

{{ "Please do not refresh this page..." }}

@endsection email-templates/mail-tester.blade.php000064400000003443150075320660013644 0ustar00 {{ translate('Email Verification') }} {{-- --}} @include('email-templates.partials.style')
@include('admin-views.business-settings.email-template.vendor-mail-template.registration')
{{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- @if(is_file('storage/app/public/company/'.$companyLogo))--}} {{--
--}} {{-- {{ $companyName }}--}} {{-- {{ $companyName }}--}} {{--
--}} {{-- @else--}} {{-- {{ $companyName }}--}} {{-- @endif--}} {{--
--}} {{--
--}} {{--
--}} {{-- {{ translate('mail_received_successfully') }}--}} {{--
--}} {{--
--}} {{--
--}} email-templates/customer-message.blade.php000064400000002626150075320660014703 0ustar00 {{ translate('Password Reset') }}
@if(is_file('storage/app/public/company/'.$companyLogo))
{{ $companyName }} {{ $companyName }}
@else {{ $companyName }} @endif
{{ $body }}
email-templates/index.blade.php000064400000001541150075320660012522 0ustar00@php $companyName = getWebConfig(name: 'company_name'); $companyLogo = getWebConfig(name: 'company_web_logo'); $title = $template['title'] ?? null; $body = $template['body'] ?? null; $copyrightText = $template['copyright_text'] ?? null; $footerText = $template['footer_text'] ?? null; $buttonName = $template['button_name'] ?? null; @endphp {{ translate('Email Verification') }} @include('email-templates.partials.style')
@include('admin-views.business-settings.email-template.'.$template['user_type'].'-mail-template'.'.'.$template['template_design_name'])
email-templates/delivery-man-password-reset.blade.php000064400000003062150075320660016767 0ustar00 {{ translate('Password Reset') }}
@if(is_file('storage/app/public/company/'.$companyLogo))
{{ $companyName }} {{ $companyName }}
@else {{ $companyName }} @endif
{{ translate('OTP for Reset Password') }}

{{ $otp }}

email-templates/order-placed-v2.blade.php000064400000026722150075320660014311 0ustar00 {{ translate('Order Placed') }} seller_is == 'seller') { $seller = Seller::find($order->seller_id); $shop = Shop::find($seller->id); } if ($order->is_guest) { $userPhone = $order['shipping_address_data'] ? $order['shipping_address_data']->phone : $order['billing_address_data']->phone; } else { $userPhone = User::find($order->customer_id)->phone; } ?>

{{ translate('thanks_for_the_order') }}

{{ translate('Your_order_ID') }} : {{$id}}

{{ translate('vendor_details') }}
@if ($order->seller_is == 'seller')
{{$shop->name}}
@else
{{ translate('inhouse_products') }}
@endif
{{ translate('payment_details') }}
{{ str_replace('_',' ',$order->payment_method) }}
{{$order->payment_status}}
{{ date('d-m-y H:i:s',strtotime($order['created_at'])) }}
@foreach ($order->details as $key=>$details) qty; ?> shipping ? $details->shipping->cost : 0; $totalDiscountOnProduct += $details['discount']; $total += $subtotal; ?> @endforeach
{{ translate('SL') }} {{ translate('Ordered_Items') }} {{ translate('Unit_price') }} {{ translate('QTY') }} {{ translate('Total') }}
{{$key+1}} {{$details['product']?Str::limit($details['product']->name,55):''}}
@if ($details['variant']!=null) {{ translate('variation') }} : {{$details['variant']}} @endif
{{ webCurrencyConverter(amount: $details['price']) }} {{ $details->qty }} {{ webCurrencyConverter(amount: $subtotal) }}
@if($order->order_type == 'default_type') @endif @if ($order->order_type != 'default_type') @endif
{{ translate('sub_total') }} : {{ webCurrencyConverter(amount: $subTotal) }}
{{ translate('tax') }} : {{ webCurrencyConverter(amount: $totalTax) }}
{{ translate('shipping') }} : {{ webCurrencyConverter(amount: $shipping - ($order->is_shipping_free ? $order->extra_discount : 0)) }}
{{ translate('coupon_discount') }} : - {{ webCurrencyConverter(amount: $order->discount_amount) }}
{{ translate('discount_on_product') }} : - {{ webCurrencyConverter(amount: $totalDiscountOnProduct) }}
{{ translate('extra_discount') }} : - {{ webCurrencyConverter(amount: $extraDiscount) }}
{{ translate('total') }} : {{ webCurrencyConverter(amount: $order->order_amount) }}
{{ translate('You_can_track_your_order_by_clicking_the_below_button') }}
@php($socialMedia = \App\Models\SocialMedia::where('active_status', 1)->get()) @if(isset($socialMedia)) @endif

{{ $companyName }}

{{ translate('phone') }} : {{ $companyPhone }}
{{ translate('website') }} : {{ url('/') }}
{{ translate('email') }} : {{ $companyEmail }}
@foreach ($socialMedia as $item) @endforeach
email-templates/digital-product-download.blade.php000064400000025151150075320660016316 0ustar00 {{ translate('Vendor_Registration') }}

{{ $data['title'] }}

{{ translate('Hi').' '.$data['order']->customer['f_name'].',' }}

{{translate('thank_you_for_choosing_').$companyName.'! '.translate('your_digital_product_is_ready_for_download').'.'.translate('to_download_your_product').','.translate('_use_your_email_')}} {{$data['order']->customer['email']}}{{translate('_and')}} {{translate('_order').'# '.$data['order']->id. translate('_below')}}


{{translate('order_info')}}

{{translate('to_verify_when_download_your_product').','.translate('_use_your_order_info').'.'}}

{{translate('Order').'#'.$data['order']->id}} {{$data['order']->customer['phone']}}

{{translate('products')}}

@foreach($data['order']->details as $details) @php($product = json_decode($details['product_details'])) @if($product->product_type == 'digital')
{{substr($product->name, 0, 50)}}
@endif @endforeach
{{translate('click_below')}}
{{url('digital-product-download-pos')}}

{{translate('don’t_share_your_order_information').', '.translate('_it’s_confidential').', '.translate('_if_you_share_this_info').', '.translate('_then_anyone_can_download').'.'}}

{{translate('meanwhile_click_here_to_visit_').$companyName.translate('_website')}}.
{{url('/')}}
{{ translate('Thanks_&_Regards') }},
{{ $companyName }}
{{ translate('Privacy_Policy') }} {{ translate('Contact_Us') }} {{ translate('All_copy_right_reserved').','.date('Y').' '.$companyName }}
email-templates/customer-status-update.blade.php000064400000013615150075320660016062 0ustar00 {{ translate($data['subject']) }}

{{ $data['title'] }}

{{ translate('Hi').' '.$data['name'].',' }}

{{ $data['message'] }}
@if($data['status'] == 0)
{{ translate('meanwhile_click_here_to_visit_').$companyName.translate('_website') }} .
{{url('/') }} @elseif($data['status'] == 1)
{{ translate('Click_here_to_login_to_your_account').'.' }}
{{ url('/') }} @endif
{{ translate('Thanks_&_Regards') }},
{{ $companyName }}
{{ translate('Privacy_Policy') }} {{ translate('Contact_Us') }} {{ translate('All_copy_right_reserved').','.date('Y').' '.$companyName }}
email-templates/add-fund.blade.php000064400000016177150075320660013110 0ustar00 {{ translate('Add_Fund_Transaction_Status') }}
@if(is_file('storage/app/public/company/'.$companyLogo))
{{ $companyName }} {{ $companyName }}
@else {{ $companyName }} @endif
{{ translate('Transaction_Successful') }} {{ translate('amount_successfully_credited to_your_wallet') }} {{ translate('note') }}: {{$data->transaction_type=='add_fund_by_admin' ? translate('Reward_by_company_admin') : translate('loyalty_point_to_wallet') }} {{ translate('dear') }} {{$data->user->f_name.' '.$data->user->l_name}} {{ translate('Thank you for joining with') }} {{$companyName}}!
{{ translate('sl') }} {{ translate('transaction') }} {{ translate('id') }} {{ translate('transaction') }} {{ translate('date') }} {{ translate('credit') }} {{ translate('debit') }} {{ translate('balance') }}
1 {{$data->transaction_id}} {{$data->created_at}} {{\App\Utils\Helpers::currency_converter($data->credit) }} {{\App\Utils\Helpers::currency_converter($data->debit) }} {{\App\Utils\Helpers::currency_converter($data->balance) }}
{{ translate('If you require any assistance or have feedback or suggestions about our site, you can email us at') }}
@php($social_media = \App\Models\SocialMedia::where('active_status', 1)->get()) @if(isset($social_media)) @endif
@foreach ($social_media as $item) @endforeach
{{ translate('All_copy_right_reserved').','.date('Y').' '.$companyName }}
email-templates/partials/style.blade.php000064400000013733150075320660014400 0ustar00 email-templates/vendor-registration.blade.php000064400000015256150075320660015430 0ustar00 {{ translate('Vendor_Registration') }}

{{ $data['title'] }}

{{ translate('Hi').' '.$data['name'].',' }}

{{$data['message']}}
@if($data['status'] == 'pending')
{{translate('meanwhile_click_here_to_visit_').$companyName.translate('_website')}}.
{{url('/')}} @elseif($data['status'] == 'approved')
{{translate('Click here to login to your account').'.'}}
{{url('vendor/auth/login')}} @endif
{{ translate('Thanks_&_Regards') }},
{{ $companyName }}
{{ translate('Privacy_Policy') }} {{ translate('Contact_Us') }} {{ translate('All_copy_right_reserved').','.date('Y').' '.$companyName }}
email-templates/customer-registration.blade.php000064400000015236150075320660015772 0ustar00 {{ translate('Vendor_Registration') }}

{{ $data['title'] }}

{{ translate('Hi').' '.$data['name'].',' }}

{{$data['message']}}

{{translate('reset_Password')}}
{{translate('meanwhile_click_here_to_visit_').$companyName.translate('_website')}}.
{{url('/')}}
{{ translate('Thanks_&_Regards') }},
{{ $companyName }}
{{ translate('Privacy_Policy') }} {{ translate('Contact_Us') }} {{ translate('All_copy_right_reserved').','.date('Y').' '.$companyName }}
email-templates/order-received-notify-seller.blade.php000064400000004125150075320660017105 0ustar00 {{ translate('New_order_received') }}
@if(is_file('storage/app/public/company/'.$companyLogo))
{{ $companyName }} {{ $companyName }}
@else {{ $companyName }} @endif

{{ translate('Notification mail for new order received') }}

{{ translate('We have sent you this email to notify that you have a new order. You will be able to see your orders after login to your panel') }}.

{{ translate('New order ID for you') }} :

{{ $id }}

{{ translate('If you need help, or you have any other questions, feel free to email us') }}. {{ translate('From') }} {{$web_config['name']->value}}

email-templates/admin-password-reset.blade.php000064400000003215150075320660015463 0ustar00 {{ translate('Password Reset') }}
@if(is_file('storage/app/public/company/'.$companyLogo))
{{ $companyName }} {{ $companyName }}
@else {{ $companyName }} @endif
{{ translate('Reset Your password') }}
email-templates/order-placed.blade.php000064400000004104150075320660013752 0ustar00 {{ translate('Order_Placed') }}
@if(is_file('storage/app/public/company/'.$companyLogo))
{{ $companyName }} {{ $companyName }}
@else {{ $companyName }} @endif

{{ translate('Notification mail for order placed') }}

{{ translate('We have sent you this email in response to your order placed. You will be able to see your order status after login to your account') }}.

{{ translate('Your_order_ID') }}

{{ $id }}

{{ translate('If you need help, or you have any other questions, feel free to email us') }}. {{ translate('From') }} {{$web_config['name']->value}}

email-templates/digital-product-otp-verificationMail.blade.php000064400000003420150075320660020567 0ustar00 {{ translate('OTP_Verification_Code') }}
@if(is_file('storage/app/public/company/'.$companyLogo))
{{ $companyName }} {{ $companyName }}
@else {{ $companyName }} @endif
{{ translate('your_OTP_Verification_Code') }}

{{ $token }}

email-templates/email-verification.blade.php000064400000003054150075320660015163 0ustar00 {{ translate('Email Verification') }}
@if(is_file('storage/app/public/company/'.$companyLogo))
{{ $companyName }} {{ $companyName }}
@else {{ $companyName }} @endif
{{ translate('Verify_your_email') }}

{{ $token }}