Actualizacion de Diseño Logins y Parte de Registro Negocios
This commit is contained in:
152
desarrollo/resources/views/seller/orders/index.blade.php
Normal file
152
desarrollo/resources/views/seller/orders/index.blade.php
Normal file
@@ -0,0 +1,152 @@
|
||||
@extends('seller.layouts.app')
|
||||
|
||||
@section('panel_content')
|
||||
|
||||
<div class="card">
|
||||
<form id="sort_orders" action="" method="GET">
|
||||
<div class="card-header row gutters-5">
|
||||
<div class="col text-center text-md-left">
|
||||
<h5 class="mb-md-0 h6">{{ translate('Orders') }}</h5>
|
||||
</div>
|
||||
<div class="col-md-3 ml-auto">
|
||||
<select class="form-control aiz-selectpicker"
|
||||
data-placeholder="{{ translate('Filter by Payment Status') }}" name="payment_status"
|
||||
onchange="sort_orders()">
|
||||
<option value="">{{ translate('Filter by Payment Status') }}</option>
|
||||
<option value="paid"
|
||||
@isset($payment_status) @if ($payment_status == 'paid') selected @endif @endisset>
|
||||
{{ translate('Paid') }}</option>
|
||||
<option value="unpaid"
|
||||
@isset($payment_status) @if ($payment_status == 'unpaid') selected @endif @endisset>
|
||||
{{ translate('Unpaid') }}</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3 ml-auto">
|
||||
<select class="form-control aiz-selectpicker"
|
||||
data-placeholder="{{ translate('Filter by Payment Status') }}" name="delivery_status"
|
||||
onchange="sort_orders()">
|
||||
<option value="">{{ translate('Filter by Deliver Status') }}</option>
|
||||
<option value="pending"
|
||||
@isset($delivery_status) @if ($delivery_status == 'pending') selected @endif @endisset>
|
||||
{{ translate('Pending') }}</option>
|
||||
<option value="confirmed"
|
||||
@isset($delivery_status) @if ($delivery_status == 'confirmed') selected @endif @endisset>
|
||||
{{ translate('Confirmed') }}</option>
|
||||
<option value="on_delivery"
|
||||
@isset($delivery_status) @if ($delivery_status == 'on_delivery') selected @endif @endisset>
|
||||
{{ translate('On delivery') }}</option>
|
||||
<option value="delivered"
|
||||
@isset($delivery_status) @if ($delivery_status == 'delivered') selected @endif @endisset>
|
||||
{{ translate('Delivered') }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<div class="from-group mb-0">
|
||||
<input type="text" class="form-control" id="search" name="search"
|
||||
@isset($sort_search) value="{{ $sort_search }}" @endisset
|
||||
placeholder="{{ translate('Type Order code & hit Enter') }}">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
@if (count($orders) > 0)
|
||||
<div class="card-body p-3">
|
||||
<table class="table aiz-table mb-0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>#</th>
|
||||
<th>{{ translate('Order Code') }}</th>
|
||||
<th data-breakpoints="lg">{{ translate('Num. of Products') }}</th>
|
||||
<th data-breakpoints="lg">{{ translate('Customer') }}</th>
|
||||
<th data-breakpoints="md">{{ translate('Amount') }}</th>
|
||||
<th data-breakpoints="lg">{{ translate('Delivery Status') }}</th>
|
||||
<th>{{ translate('Payment Status') }}</th>
|
||||
<th class="text-right">{{ translate('Options') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach ($orders as $key => $order_id)
|
||||
@php
|
||||
$order = \App\Models\Order::find($order_id->id);
|
||||
@endphp
|
||||
@if ($order != null)
|
||||
<tr>
|
||||
<td>
|
||||
{{ $key + 1 }}
|
||||
</td>
|
||||
<td>
|
||||
<a href="#{{ $order->code }}"
|
||||
onclick="show_order_details({{ $order->id }})">{{ $order->code }}</a>
|
||||
|
||||
@if (addon_is_activated('pos_system') && $order->order_from == 'pos')
|
||||
<span class="badge badge-inline badge-danger">{{ translate('POS') }}</span>
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
{{ count($order->orderDetails->where('seller_id', Auth::user()->id)) }}
|
||||
</td>
|
||||
<td>
|
||||
@if ($order->user_id != null)
|
||||
{{ optional($order->user)->name }}
|
||||
@else
|
||||
{{ translate('Guest') }} ({{ $order->guest_id }})
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
{{ single_price($order->grand_total) }}
|
||||
</td>
|
||||
<td>
|
||||
@php
|
||||
$status = $order->delivery_status;
|
||||
@endphp
|
||||
{{ translate(ucfirst(str_replace('_', ' ', $status))) }}
|
||||
</td>
|
||||
<td>
|
||||
@if ($order->payment_status == 'paid')
|
||||
<span class="badge badge-inline badge-success">{{ translate('Paid') }}</span>
|
||||
@else
|
||||
<span class="badge badge-inline badge-danger">{{ translate('Unpaid') }}</span>
|
||||
@endif
|
||||
</td>
|
||||
<td class="text-right">
|
||||
@if (addon_is_activated('pos_system') && $order->order_from == 'pos')
|
||||
<a class="btn btn-soft-success btn-icon btn-circle btn-sm"
|
||||
href="{{ route('seller.invoice.thermal_printer', $order->id) }}" target="_blank"
|
||||
title="{{ translate('Thermal Printer') }}">
|
||||
<i class="las la-print"></i>
|
||||
</a>
|
||||
@endif
|
||||
<a href="{{ route('seller.orders.show', encrypt($order->id)) }}"
|
||||
class="btn btn-soft-info btn-icon btn-circle btn-sm"
|
||||
title="{{ translate('Order Details') }}">
|
||||
<i class="las la-eye"></i>
|
||||
</a>
|
||||
<a href="{{ route('seller.invoice.download', $order->id) }}"
|
||||
class="btn btn-soft-warning btn-icon btn-circle btn-sm"
|
||||
title="{{ translate('Download Invoice') }}">
|
||||
<i class="las la-download"></i>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="aiz-pagination">
|
||||
{{ $orders->links() }}
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
|
||||
@section('script')
|
||||
<script type="text/javascript">
|
||||
function sort_orders(el) {
|
||||
$('#sort_orders').submit();
|
||||
}
|
||||
</script>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user