Merge branch 'master' of https://github.com/bagisto/bagisto into sarga-v1
This commit is contained in:
commit
494d31a1e0
|
|
@ -97,7 +97,7 @@ Take advantage of two of the hottest frameworks used in this project -- Laravel
|
|||
* **For MySQL users**: 5.7.23 or higher.
|
||||
* **For MariaDB users**: 10.2.7 or Higher.
|
||||
* **Node**: 8.11.3 LTS or higher.
|
||||
* **Composer**: 1.6.5 or higher.
|
||||
* **Composer**: 2.3.5 or higher.
|
||||
|
||||
### Installation and Configuration
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -107,41 +107,45 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</accordian>
|
||||
|
||||
<accordian title="{{ __('admin::app.sales.orders.address') }}" :active="true">
|
||||
<div slot="body">
|
||||
<div class="sale">
|
||||
<div class="sale-section">
|
||||
<div class="secton-title">
|
||||
<span>{{ __('admin::app.sales.orders.billing-address') }}</span>
|
||||
</div>
|
||||
@if ($order->billing_address || $order->shipping_address)
|
||||
<accordian title="{{ __('admin::app.sales.orders.address') }}" :active="true">
|
||||
<div slot="body">
|
||||
<div class="sale">
|
||||
@if ($order->billing_address)
|
||||
<div class="sale-section">
|
||||
<div class="secton-title">
|
||||
<span>{{ __('admin::app.sales.orders.billing-address') }}</span>
|
||||
</div>
|
||||
|
||||
<div class="section-content">
|
||||
<div class="section-content">
|
||||
|
||||
@include ('admin::sales.address', ['address' => $order->billing_address])
|
||||
@include ('admin::sales.address', ['address' => $order->billing_address])
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@if ($order->shipping_address)
|
||||
<div class="sale-section">
|
||||
<div class="secton-title">
|
||||
<span>{{ __('admin::app.sales.orders.shipping-address') }}</span>
|
||||
</div>
|
||||
|
||||
<div class="section-content">
|
||||
|
||||
@include ('admin::sales.address', ['address' => $order->shipping_address])
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
@if ($order->shipping_address)
|
||||
<div class="sale-section">
|
||||
<div class="secton-title">
|
||||
<span>{{ __('admin::app.sales.orders.shipping-address') }}</span>
|
||||
</div>
|
||||
|
||||
<div class="section-content">
|
||||
|
||||
@include ('admin::sales.address', ['address' => $order->shipping_address])
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</accordian>
|
||||
</div>
|
||||
</accordian>
|
||||
@endif
|
||||
|
||||
<accordian title="{{ __('admin::app.sales.orders.payment-and-shipping') }}" :active="true">
|
||||
<div slot="body">
|
||||
|
|
@ -273,7 +277,7 @@
|
|||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</accordian>
|
||||
|
|
|
|||
|
|
@ -499,7 +499,7 @@
|
|||
<td>#{{ $invoice->increment_id ?? $invoice->id }}</td>
|
||||
<td>{{ $invoice->created_at }}</td>
|
||||
<td>#{{ $invoice->order->increment_id }}</td>
|
||||
<td>{{ $invoice->address->name }}</td>
|
||||
<td>{{ $order->customer_full_name }}</td>
|
||||
<td>{{ $invoice->status_label }}</td>
|
||||
<td>{{ core()->formatBasePrice($invoice->base_grand_total) }}</td>
|
||||
<td class="action">
|
||||
|
|
|
|||
|
|
@ -106,42 +106,46 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</accordian>
|
||||
|
||||
<accordian title="{{ __('admin::app.sales.orders.address') }}" :active="true">
|
||||
<div slot="body">
|
||||
<div class="sale">
|
||||
<div class="sale-section">
|
||||
<div class="secton-title">
|
||||
<span>{{ __('admin::app.sales.orders.billing-address') }}</span>
|
||||
</div>
|
||||
|
||||
<div class="section-content">
|
||||
|
||||
@include ('admin::sales.address', ['address' => $order->billing_address])
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@if ($order->shipping_address)
|
||||
<div class="sale-section">
|
||||
<div class="secton-title">
|
||||
<span>{{ __('admin::app.sales.orders.shipping-address') }}</span>
|
||||
</div>
|
||||
|
||||
<div class="section-content">
|
||||
|
||||
@include ('admin::sales.address', ['address' => $order->shipping_address])
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</accordian>
|
||||
|
||||
@if ($order->billing_address || $order->shipping_address)
|
||||
<accordian title="{{ __('admin::app.sales.orders.address') }}" :active="true">
|
||||
<div slot="body">
|
||||
<div class="sale">
|
||||
@if ($order->billing_address)
|
||||
<div class="sale-section">
|
||||
<div class="secton-title">
|
||||
<span>{{ __('admin::app.sales.orders.billing-address') }}</span>
|
||||
</div>
|
||||
|
||||
<div class="section-content">
|
||||
|
||||
@include ('admin::sales.address', ['address' => $order->billing_address])
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@if ($order->shipping_address)
|
||||
<div class="sale-section">
|
||||
<div class="secton-title">
|
||||
<span>{{ __('admin::app.sales.orders.shipping-address') }}</span>
|
||||
</div>
|
||||
|
||||
<div class="section-content">
|
||||
|
||||
@include ('admin::sales.address', ['address' => $order->shipping_address])
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</accordian>
|
||||
@endif
|
||||
|
||||
<accordian title="{{ __('admin::app.sales.orders.payment-and-shipping') }}" :active="true">
|
||||
<div slot="body">
|
||||
<div class="sale">
|
||||
|
|
@ -340,7 +344,7 @@
|
|||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -48,9 +48,9 @@ return [
|
|||
'price' => 'السعر',
|
||||
'quantity' => 'كمية',
|
||||
'description' => 'وصف',
|
||||
'special-price' => 'Special Price',
|
||||
'special-price-from' => 'Valid From',
|
||||
'special-price-to' => 'Valid Until',
|
||||
'special-price' => 'سعر خاص',
|
||||
'special-price-from' => 'صالح من تاريخ',
|
||||
'special-price-to' => 'صالح حتى',
|
||||
'charged-per' => 'اتهم لكل',
|
||||
'guest' => 'زائر',
|
||||
'table' => 'الطاولة',
|
||||
|
|
@ -64,7 +64,7 @@ return [
|
|||
'status' => 'الحالة',
|
||||
'open' => 'افتح',
|
||||
'close' => 'غلق',
|
||||
'time-error' => 'The to time must be greater than the from time.'
|
||||
'time-error' => 'يجب أن يكون وقت إلى وقت أكبر من وقت من وقت.'
|
||||
]
|
||||
],
|
||||
|
||||
|
|
@ -101,7 +101,7 @@ return [
|
|||
'book-an-appointment' => 'حجز موعد',
|
||||
'date' => 'تاريخ',
|
||||
'slot' => 'فتحة',
|
||||
'no-slots-available' => 'No slots available',
|
||||
'no-slots-available' => 'لا توجد فترات زمنية متاحة',
|
||||
'rent-an-item' => 'استئجار عنصر',
|
||||
'choose-rent-option' => 'اختر خيار الإيجار',
|
||||
'daily-basis' => 'الأساس اليومي',
|
||||
|
|
|
|||
|
|
@ -0,0 +1,142 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'admin' => [
|
||||
'catalog' => [
|
||||
'products' => [
|
||||
'booking' => 'Booking Information',
|
||||
'booking-type' => 'Booking Type',
|
||||
'default' => 'Default',
|
||||
'appointment-booking' => 'Appointment Booking',
|
||||
'event-booking' => 'Event Booking',
|
||||
'rental-booking' => 'Rental Booking',
|
||||
'table-booking' => 'Table Booking',
|
||||
'slot-duration' => 'Slot Duration (Mins)',
|
||||
'break-time' => 'Break Time b/w Slots (Mins)',
|
||||
'available-every-week' => 'Available Every Week',
|
||||
'yes' => 'Yes',
|
||||
'no' => 'No',
|
||||
'available-from' => 'Available From',
|
||||
'available-to' => 'Available To',
|
||||
'same-slot-all-days' => 'Same Slot All Days',
|
||||
'slot-has-quantity' => 'Slot has Quantity',
|
||||
'slots' => 'Slots',
|
||||
'from' => 'From',
|
||||
'to' => 'To',
|
||||
'qty' => 'Qty',
|
||||
'add-slot' => 'Add Slot',
|
||||
'sunday' => 'Sunday',
|
||||
'monday' => 'Monday',
|
||||
'tuesday' => 'Tuesday',
|
||||
'wednesday' => 'Wednesday',
|
||||
'thursday' => 'Thursday',
|
||||
'friday' => 'Friday',
|
||||
'saturday' => 'Saturday',
|
||||
'renting-type' => 'Renting Type',
|
||||
'daily' => 'Daily Basis',
|
||||
'hourly' => 'Hourly Basis',
|
||||
'daily-hourly' => 'Both (Daily and Hourly Basis)',
|
||||
'daily-price' => 'Daily Price',
|
||||
'hourly-price' => 'Hourly Price',
|
||||
'location' => 'Location',
|
||||
'show-location' => 'Show Location',
|
||||
'event-start-date' => 'Event Start Date',
|
||||
'event-end-date' => 'Event End Date',
|
||||
'tickets' => 'Tickets',
|
||||
'add-ticket' => 'Add Ticket',
|
||||
'name' => 'Name',
|
||||
'price' => 'Price',
|
||||
'quantity' => 'Quantity',
|
||||
'description' => 'Description',
|
||||
'special-price' => 'Special Price',
|
||||
'special-price-from' => 'Valid From',
|
||||
'special-price-to' => 'Valid Until',
|
||||
'charged-per' => 'Charged Per',
|
||||
'guest' => 'Guest',
|
||||
'table' => 'Table',
|
||||
'prevent-scheduling-before' => 'Prevent Scheduling Before',
|
||||
'guest-limit' => 'Guest Limit Per Table',
|
||||
'guest-capacity' => 'Guest Capacity',
|
||||
'type' => 'Type',
|
||||
'many-bookings-for-one-day' => 'Many Bookings for One Day',
|
||||
'one-booking-for-many-days' => 'One Booking for Many Days',
|
||||
'day' => 'Day',
|
||||
'status' => 'Status',
|
||||
'open' => 'Open',
|
||||
'close' => 'Close',
|
||||
'time-error' => 'The to time must be greater than the from time.'
|
||||
]
|
||||
],
|
||||
|
||||
'sales' => [
|
||||
'bookings' => [
|
||||
'title' => 'Bookings',
|
||||
]
|
||||
],
|
||||
|
||||
'datagrid' => [
|
||||
'from' => 'From',
|
||||
'to' => 'To'
|
||||
]
|
||||
],
|
||||
|
||||
'shop' => [
|
||||
'products' => [
|
||||
'booking-information' => 'Booking Information',
|
||||
'location' => 'Location',
|
||||
'contact' => 'Contact',
|
||||
'email' => 'Email',
|
||||
'slot-duration' => 'Slot Duration',
|
||||
'slot-duration-in-minutes' => ':minutes Minutes',
|
||||
'today-availability' => 'Today Availability',
|
||||
'slots-for-all-days' => 'Show for all days',
|
||||
'sunday' => 'Sunday',
|
||||
'monday' => 'Monday',
|
||||
'tuesday' => 'Tuesday',
|
||||
'wednesday' => 'Wednesday',
|
||||
'thursday' => 'Thursday',
|
||||
'friday' => 'Friday',
|
||||
'saturday' => 'Saturday',
|
||||
'closed' => 'Closed',
|
||||
'book-an-appointment' => 'Book an Appointment',
|
||||
'date' => 'Date',
|
||||
'slot' => 'Slot',
|
||||
'no-slots-available' => 'No slots available',
|
||||
'rent-an-item' => 'Rent an Item',
|
||||
'choose-rent-option' => 'Choose Rent Option',
|
||||
'daily-basis' => 'Daily Basis',
|
||||
'hourly-basis' => 'Hourly Basis',
|
||||
'select-time-slot'=> 'Select time slot',
|
||||
'select-slot' => 'Select Slot',
|
||||
'select-date' => 'Select date',
|
||||
'select-rent-time' => 'Select Rent Time',
|
||||
'from' => 'From',
|
||||
'to' => 'To',
|
||||
'book-a-table' => 'Book a Table',
|
||||
'special-notes' => 'Special Request/Notes',
|
||||
'event-on' => 'Event On',
|
||||
'book-your-ticket' => 'Book Your Ticket',
|
||||
'per-ticket-price' => ':price Per Ticket',
|
||||
'number-of-tickets' => 'Number of Tickets',
|
||||
'total-tickets' => 'Total Tickets',
|
||||
'base-price' => 'Base Price',
|
||||
'total-price' => 'Total Price',
|
||||
'base-price-info' => '(This will be apply to each type of ticket for each quantity)'
|
||||
],
|
||||
|
||||
'cart' => [
|
||||
'renting_type' => 'Rent Type',
|
||||
'daily' => 'Daily',
|
||||
'hourly' => 'Hourly',
|
||||
'event-ticket' => 'Event Ticket',
|
||||
'event-from' => 'Event From',
|
||||
'event-till' => 'Event Till',
|
||||
'rent-type' => 'Rent Type',
|
||||
'rent-from' => 'Rent From',
|
||||
'rent-till' => 'Rent Till',
|
||||
'booking-from' => 'Booking From',
|
||||
'booking-till' => 'Booking Till',
|
||||
'special-note' => 'Special Request/Notes',
|
||||
]
|
||||
]
|
||||
];
|
||||
|
|
@ -0,0 +1,142 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'admin' => [
|
||||
'catalog' => [
|
||||
'products' => [
|
||||
'booking' => 'Booking Information',
|
||||
'booking-type' => 'Booking Type',
|
||||
'default' => 'Default',
|
||||
'appointment-booking' => 'Appointment Booking',
|
||||
'event-booking' => 'Event Booking',
|
||||
'rental-booking' => 'Rental Booking',
|
||||
'table-booking' => 'Table Booking',
|
||||
'slot-duration' => 'Slot Duration (Mins)',
|
||||
'break-time' => 'Break Time b/w Slots (Mins)',
|
||||
'available-every-week' => 'Available Every Week',
|
||||
'yes' => 'Yes',
|
||||
'no' => 'No',
|
||||
'available-from' => 'Available From',
|
||||
'available-to' => 'Available To',
|
||||
'same-slot-all-days' => 'Same Slot All Days',
|
||||
'slot-has-quantity' => 'Slot has Quantity',
|
||||
'slots' => 'Slots',
|
||||
'from' => 'From',
|
||||
'to' => 'To',
|
||||
'qty' => 'Qty',
|
||||
'add-slot' => 'Add Slot',
|
||||
'sunday' => 'Sunday',
|
||||
'monday' => 'Monday',
|
||||
'tuesday' => 'Tuesday',
|
||||
'wednesday' => 'Wednesday',
|
||||
'thursday' => 'Thursday',
|
||||
'friday' => 'Friday',
|
||||
'saturday' => 'Saturday',
|
||||
'renting-type' => 'Renting Type',
|
||||
'daily' => 'Daily Basis',
|
||||
'hourly' => 'Hourly Basis',
|
||||
'daily-hourly' => 'Both (Daily and Hourly Basis)',
|
||||
'daily-price' => 'Daily Price',
|
||||
'hourly-price' => 'Hourly Price',
|
||||
'location' => 'Location',
|
||||
'show-location' => 'Show Location',
|
||||
'event-start-date' => 'Event Start Date',
|
||||
'event-end-date' => 'Event End Date',
|
||||
'tickets' => 'Tickets',
|
||||
'add-ticket' => 'Add Ticket',
|
||||
'name' => 'Name',
|
||||
'price' => 'Price',
|
||||
'quantity' => 'Quantity',
|
||||
'description' => 'Description',
|
||||
'special-price' => 'Special Price',
|
||||
'special-price-from' => 'Valid From',
|
||||
'special-price-to' => 'Valid Until',
|
||||
'charged-per' => 'Charged Per',
|
||||
'guest' => 'Guest',
|
||||
'table' => 'Table',
|
||||
'prevent-scheduling-before' => 'Prevent Scheduling Before',
|
||||
'guest-limit' => 'Guest Limit Per Table',
|
||||
'guest-capacity' => 'Guest Capacity',
|
||||
'type' => 'Type',
|
||||
'many-bookings-for-one-day' => 'Many Bookings for One Day',
|
||||
'one-booking-for-many-days' => 'One Booking for Many Days',
|
||||
'day' => 'Day',
|
||||
'status' => 'Status',
|
||||
'open' => 'Open',
|
||||
'close' => 'Close',
|
||||
'time-error' => 'The to time must be greater than the from time.'
|
||||
]
|
||||
],
|
||||
|
||||
'sales' => [
|
||||
'bookings' => [
|
||||
'title' => 'Bookings',
|
||||
]
|
||||
],
|
||||
|
||||
'datagrid' => [
|
||||
'from' => 'From',
|
||||
'to' => 'To'
|
||||
]
|
||||
],
|
||||
|
||||
'shop' => [
|
||||
'products' => [
|
||||
'booking-information' => 'Booking Information',
|
||||
'location' => 'Location',
|
||||
'contact' => 'Contact',
|
||||
'email' => 'Email',
|
||||
'slot-duration' => 'Slot Duration',
|
||||
'slot-duration-in-minutes' => ':minutes Minutes',
|
||||
'today-availability' => 'Today Availability',
|
||||
'slots-for-all-days' => 'Show for all days',
|
||||
'sunday' => 'Sunday',
|
||||
'monday' => 'Monday',
|
||||
'tuesday' => 'Tuesday',
|
||||
'wednesday' => 'Wednesday',
|
||||
'thursday' => 'Thursday',
|
||||
'friday' => 'Friday',
|
||||
'saturday' => 'Saturday',
|
||||
'closed' => 'Closed',
|
||||
'book-an-appointment' => 'Book an Appointment',
|
||||
'date' => 'Date',
|
||||
'slot' => 'Slot',
|
||||
'no-slots-available' => 'No slots available',
|
||||
'rent-an-item' => 'Rent an Item',
|
||||
'choose-rent-option' => 'Choose Rent Option',
|
||||
'daily-basis' => 'Daily Basis',
|
||||
'hourly-basis' => 'Hourly Basis',
|
||||
'select-time-slot'=> 'Select time slot',
|
||||
'select-slot' => 'Select Slot',
|
||||
'select-date' => 'Select date',
|
||||
'select-rent-time' => 'Select Rent Time',
|
||||
'from' => 'From',
|
||||
'to' => 'To',
|
||||
'book-a-table' => 'Book a Table',
|
||||
'special-notes' => 'Special Request/Notes',
|
||||
'event-on' => 'Event On',
|
||||
'book-your-ticket' => 'Book Your Ticket',
|
||||
'per-ticket-price' => ':price Per Ticket',
|
||||
'number-of-tickets' => 'Number of Tickets',
|
||||
'total-tickets' => 'Total Tickets',
|
||||
'base-price' => 'Base Price',
|
||||
'total-price' => 'Total Price',
|
||||
'base-price-info' => '(This will be apply to each type of ticket for each quantity)'
|
||||
],
|
||||
|
||||
'cart' => [
|
||||
'renting_type' => 'Rent Type',
|
||||
'daily' => 'Daily',
|
||||
'hourly' => 'Hourly',
|
||||
'event-ticket' => 'Event Ticket',
|
||||
'event-from' => 'Event From',
|
||||
'event-till' => 'Event Till',
|
||||
'rent-type' => 'Rent Type',
|
||||
'rent-from' => 'Rent From',
|
||||
'rent-till' => 'Rent Till',
|
||||
'booking-from' => 'Booking From',
|
||||
'booking-till' => 'Booking Till',
|
||||
'special-note' => 'Special Request/Notes',
|
||||
]
|
||||
]
|
||||
];
|
||||
|
|
@ -0,0 +1,142 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'admin' => [
|
||||
'catalog' => [
|
||||
'products' => [
|
||||
'booking' => 'Booking Information',
|
||||
'booking-type' => 'Booking Type',
|
||||
'default' => 'Default',
|
||||
'appointment-booking' => 'Appointment Booking',
|
||||
'event-booking' => 'Event Booking',
|
||||
'rental-booking' => 'Rental Booking',
|
||||
'table-booking' => 'Table Booking',
|
||||
'slot-duration' => 'Slot Duration (Mins)',
|
||||
'break-time' => 'Break Time b/w Slots (Mins)',
|
||||
'available-every-week' => 'Available Every Week',
|
||||
'yes' => 'Yes',
|
||||
'no' => 'No',
|
||||
'available-from' => 'Available From',
|
||||
'available-to' => 'Available To',
|
||||
'same-slot-all-days' => 'Same Slot All Days',
|
||||
'slot-has-quantity' => 'Slot has Quantity',
|
||||
'slots' => 'Slots',
|
||||
'from' => 'From',
|
||||
'to' => 'To',
|
||||
'qty' => 'Qty',
|
||||
'add-slot' => 'Add Slot',
|
||||
'sunday' => 'Sunday',
|
||||
'monday' => 'Monday',
|
||||
'tuesday' => 'Tuesday',
|
||||
'wednesday' => 'Wednesday',
|
||||
'thursday' => 'Thursday',
|
||||
'friday' => 'Friday',
|
||||
'saturday' => 'Saturday',
|
||||
'renting-type' => 'Renting Type',
|
||||
'daily' => 'Daily Basis',
|
||||
'hourly' => 'Hourly Basis',
|
||||
'daily-hourly' => 'Both (Daily and Hourly Basis)',
|
||||
'daily-price' => 'Daily Price',
|
||||
'hourly-price' => 'Hourly Price',
|
||||
'location' => 'Location',
|
||||
'show-location' => 'Show Location',
|
||||
'event-start-date' => 'Event Start Date',
|
||||
'event-end-date' => 'Event End Date',
|
||||
'tickets' => 'Tickets',
|
||||
'add-ticket' => 'Add Ticket',
|
||||
'name' => 'Name',
|
||||
'price' => 'Price',
|
||||
'quantity' => 'Quantity',
|
||||
'description' => 'Description',
|
||||
'special-price' => 'Special Price',
|
||||
'special-price-from' => 'Valid From',
|
||||
'special-price-to' => 'Valid Until',
|
||||
'charged-per' => 'Charged Per',
|
||||
'guest' => 'Guest',
|
||||
'table' => 'Table',
|
||||
'prevent-scheduling-before' => 'Prevent Scheduling Before',
|
||||
'guest-limit' => 'Guest Limit Per Table',
|
||||
'guest-capacity' => 'Guest Capacity',
|
||||
'type' => 'Type',
|
||||
'many-bookings-for-one-day' => 'Many Bookings for One Day',
|
||||
'one-booking-for-many-days' => 'One Booking for Many Days',
|
||||
'day' => 'Day',
|
||||
'status' => 'Status',
|
||||
'open' => 'Open',
|
||||
'close' => 'Close',
|
||||
'time-error' => 'The to time must be greater than the from time.'
|
||||
]
|
||||
],
|
||||
|
||||
'sales' => [
|
||||
'bookings' => [
|
||||
'title' => 'Bookings',
|
||||
]
|
||||
],
|
||||
|
||||
'datagrid' => [
|
||||
'from' => 'From',
|
||||
'to' => 'To'
|
||||
]
|
||||
],
|
||||
|
||||
'shop' => [
|
||||
'products' => [
|
||||
'booking-information' => 'Booking Information',
|
||||
'location' => 'Location',
|
||||
'contact' => 'Contact',
|
||||
'email' => 'Email',
|
||||
'slot-duration' => 'Slot Duration',
|
||||
'slot-duration-in-minutes' => ':minutes Minutes',
|
||||
'today-availability' => 'Today Availability',
|
||||
'slots-for-all-days' => 'Show for all days',
|
||||
'sunday' => 'Sunday',
|
||||
'monday' => 'Monday',
|
||||
'tuesday' => 'Tuesday',
|
||||
'wednesday' => 'Wednesday',
|
||||
'thursday' => 'Thursday',
|
||||
'friday' => 'Friday',
|
||||
'saturday' => 'Saturday',
|
||||
'closed' => 'Closed',
|
||||
'book-an-appointment' => 'Book an Appointment',
|
||||
'date' => 'Date',
|
||||
'slot' => 'Slot',
|
||||
'no-slots-available' => 'No slots available',
|
||||
'rent-an-item' => 'Rent an Item',
|
||||
'choose-rent-option' => 'Choose Rent Option',
|
||||
'daily-basis' => 'Daily Basis',
|
||||
'hourly-basis' => 'Hourly Basis',
|
||||
'select-time-slot'=> 'Select time slot',
|
||||
'select-slot' => 'Select Slot',
|
||||
'select-date' => 'Select date',
|
||||
'select-rent-time' => 'Select Rent Time',
|
||||
'from' => 'From',
|
||||
'to' => 'To',
|
||||
'book-a-table' => 'Book a Table',
|
||||
'special-notes' => 'Special Request/Notes',
|
||||
'event-on' => 'Event On',
|
||||
'book-your-ticket' => 'Book Your Ticket',
|
||||
'per-ticket-price' => ':price Per Ticket',
|
||||
'number-of-tickets' => 'Number of Tickets',
|
||||
'total-tickets' => 'Total Tickets',
|
||||
'base-price' => 'Base Price',
|
||||
'total-price' => 'Total Price',
|
||||
'base-price-info' => '(This will be apply to each type of ticket for each quantity)'
|
||||
],
|
||||
|
||||
'cart' => [
|
||||
'renting_type' => 'Rent Type',
|
||||
'daily' => 'Daily',
|
||||
'hourly' => 'Hourly',
|
||||
'event-ticket' => 'Event Ticket',
|
||||
'event-from' => 'Event From',
|
||||
'event-till' => 'Event Till',
|
||||
'rent-type' => 'Rent Type',
|
||||
'rent-from' => 'Rent From',
|
||||
'rent-till' => 'Rent Till',
|
||||
'booking-from' => 'Booking From',
|
||||
'booking-till' => 'Booking Till',
|
||||
'special-note' => 'Special Request/Notes',
|
||||
]
|
||||
]
|
||||
];
|
||||
|
|
@ -0,0 +1,142 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'admin' => [
|
||||
'catalog' => [
|
||||
'products' => [
|
||||
'booking' => 'Booking Information',
|
||||
'booking-type' => 'Booking Type',
|
||||
'default' => 'Default',
|
||||
'appointment-booking' => 'Appointment Booking',
|
||||
'event-booking' => 'Event Booking',
|
||||
'rental-booking' => 'Rental Booking',
|
||||
'table-booking' => 'Table Booking',
|
||||
'slot-duration' => 'Slot Duration (Mins)',
|
||||
'break-time' => 'Break Time b/w Slots (Mins)',
|
||||
'available-every-week' => 'Available Every Week',
|
||||
'yes' => 'Yes',
|
||||
'no' => 'No',
|
||||
'available-from' => 'Available From',
|
||||
'available-to' => 'Available To',
|
||||
'same-slot-all-days' => 'Same Slot All Days',
|
||||
'slot-has-quantity' => 'Slot has Quantity',
|
||||
'slots' => 'Slots',
|
||||
'from' => 'From',
|
||||
'to' => 'To',
|
||||
'qty' => 'Qty',
|
||||
'add-slot' => 'Add Slot',
|
||||
'sunday' => 'Sunday',
|
||||
'monday' => 'Monday',
|
||||
'tuesday' => 'Tuesday',
|
||||
'wednesday' => 'Wednesday',
|
||||
'thursday' => 'Thursday',
|
||||
'friday' => 'Friday',
|
||||
'saturday' => 'Saturday',
|
||||
'renting-type' => 'Renting Type',
|
||||
'daily' => 'Daily Basis',
|
||||
'hourly' => 'Hourly Basis',
|
||||
'daily-hourly' => 'Both (Daily and Hourly Basis)',
|
||||
'daily-price' => 'Daily Price',
|
||||
'hourly-price' => 'Hourly Price',
|
||||
'location' => 'Location',
|
||||
'show-location' => 'Show Location',
|
||||
'event-start-date' => 'Event Start Date',
|
||||
'event-end-date' => 'Event End Date',
|
||||
'tickets' => 'Tickets',
|
||||
'add-ticket' => 'Add Ticket',
|
||||
'name' => 'Name',
|
||||
'price' => 'Price',
|
||||
'quantity' => 'Quantity',
|
||||
'description' => 'Description',
|
||||
'special-price' => 'Special Price',
|
||||
'special-price-from' => 'Valid From',
|
||||
'special-price-to' => 'Valid Until',
|
||||
'charged-per' => 'Charged Per',
|
||||
'guest' => 'Guest',
|
||||
'table' => 'Table',
|
||||
'prevent-scheduling-before' => 'Prevent Scheduling Before',
|
||||
'guest-limit' => 'Guest Limit Per Table',
|
||||
'guest-capacity' => 'Guest Capacity',
|
||||
'type' => 'Type',
|
||||
'many-bookings-for-one-day' => 'Many Bookings for One Day',
|
||||
'one-booking-for-many-days' => 'One Booking for Many Days',
|
||||
'day' => 'Day',
|
||||
'status' => 'Status',
|
||||
'open' => 'Open',
|
||||
'close' => 'Close',
|
||||
'time-error' => 'The to time must be greater than the from time.'
|
||||
]
|
||||
],
|
||||
|
||||
'sales' => [
|
||||
'bookings' => [
|
||||
'title' => 'Bookings',
|
||||
]
|
||||
],
|
||||
|
||||
'datagrid' => [
|
||||
'from' => 'From',
|
||||
'to' => 'To'
|
||||
]
|
||||
],
|
||||
|
||||
'shop' => [
|
||||
'products' => [
|
||||
'booking-information' => 'Booking Information',
|
||||
'location' => 'Location',
|
||||
'contact' => 'Contact',
|
||||
'email' => 'Email',
|
||||
'slot-duration' => 'Slot Duration',
|
||||
'slot-duration-in-minutes' => ':minutes Minutes',
|
||||
'today-availability' => 'Today Availability',
|
||||
'slots-for-all-days' => 'Show for all days',
|
||||
'sunday' => 'Sunday',
|
||||
'monday' => 'Monday',
|
||||
'tuesday' => 'Tuesday',
|
||||
'wednesday' => 'Wednesday',
|
||||
'thursday' => 'Thursday',
|
||||
'friday' => 'Friday',
|
||||
'saturday' => 'Saturday',
|
||||
'closed' => 'Closed',
|
||||
'book-an-appointment' => 'Book an Appointment',
|
||||
'date' => 'Date',
|
||||
'slot' => 'Slot',
|
||||
'no-slots-available' => 'No slots available',
|
||||
'rent-an-item' => 'Rent an Item',
|
||||
'choose-rent-option' => 'Choose Rent Option',
|
||||
'daily-basis' => 'Daily Basis',
|
||||
'hourly-basis' => 'Hourly Basis',
|
||||
'select-time-slot'=> 'Select time slot',
|
||||
'select-slot' => 'Select Slot',
|
||||
'select-date' => 'Select date',
|
||||
'select-rent-time' => 'Select Rent Time',
|
||||
'from' => 'From',
|
||||
'to' => 'To',
|
||||
'book-a-table' => 'Book a Table',
|
||||
'special-notes' => 'Special Request/Notes',
|
||||
'event-on' => 'Event On',
|
||||
'book-your-ticket' => 'Book Your Ticket',
|
||||
'per-ticket-price' => ':price Per Ticket',
|
||||
'number-of-tickets' => 'Number of Tickets',
|
||||
'total-tickets' => 'Total Tickets',
|
||||
'base-price' => 'Base Price',
|
||||
'total-price' => 'Total Price',
|
||||
'base-price-info' => '(This will be apply to each type of ticket for each quantity)'
|
||||
],
|
||||
|
||||
'cart' => [
|
||||
'renting_type' => 'Rent Type',
|
||||
'daily' => 'Daily',
|
||||
'hourly' => 'Hourly',
|
||||
'event-ticket' => 'Event Ticket',
|
||||
'event-from' => 'Event From',
|
||||
'event-till' => 'Event Till',
|
||||
'rent-type' => 'Rent Type',
|
||||
'rent-from' => 'Rent From',
|
||||
'rent-till' => 'Rent Till',
|
||||
'booking-from' => 'Booking From',
|
||||
'booking-till' => 'Booking Till',
|
||||
'special-note' => 'Special Request/Notes',
|
||||
]
|
||||
]
|
||||
];
|
||||
|
|
@ -0,0 +1,142 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'admin' => [
|
||||
'catalog' => [
|
||||
'products' => [
|
||||
'booking' => 'Booking Information',
|
||||
'booking-type' => 'Booking Type',
|
||||
'default' => 'Default',
|
||||
'appointment-booking' => 'Appointment Booking',
|
||||
'event-booking' => 'Event Booking',
|
||||
'rental-booking' => 'Rental Booking',
|
||||
'table-booking' => 'Table Booking',
|
||||
'slot-duration' => 'Slot Duration (Mins)',
|
||||
'break-time' => 'Break Time b/w Slots (Mins)',
|
||||
'available-every-week' => 'Available Every Week',
|
||||
'yes' => 'Yes',
|
||||
'no' => 'No',
|
||||
'available-from' => 'Available From',
|
||||
'available-to' => 'Available To',
|
||||
'same-slot-all-days' => 'Same Slot All Days',
|
||||
'slot-has-quantity' => 'Slot has Quantity',
|
||||
'slots' => 'Slots',
|
||||
'from' => 'From',
|
||||
'to' => 'To',
|
||||
'qty' => 'Qty',
|
||||
'add-slot' => 'Add Slot',
|
||||
'sunday' => 'Sunday',
|
||||
'monday' => 'Monday',
|
||||
'tuesday' => 'Tuesday',
|
||||
'wednesday' => 'Wednesday',
|
||||
'thursday' => 'Thursday',
|
||||
'friday' => 'Friday',
|
||||
'saturday' => 'Saturday',
|
||||
'renting-type' => 'Renting Type',
|
||||
'daily' => 'Daily Basis',
|
||||
'hourly' => 'Hourly Basis',
|
||||
'daily-hourly' => 'Both (Daily and Hourly Basis)',
|
||||
'daily-price' => 'Daily Price',
|
||||
'hourly-price' => 'Hourly Price',
|
||||
'location' => 'Location',
|
||||
'show-location' => 'Show Location',
|
||||
'event-start-date' => 'Event Start Date',
|
||||
'event-end-date' => 'Event End Date',
|
||||
'tickets' => 'Tickets',
|
||||
'add-ticket' => 'Add Ticket',
|
||||
'name' => 'Name',
|
||||
'price' => 'Price',
|
||||
'quantity' => 'Quantity',
|
||||
'description' => 'Description',
|
||||
'special-price' => 'Special Price',
|
||||
'special-price-from' => 'Valid From',
|
||||
'special-price-to' => 'Valid Until',
|
||||
'charged-per' => 'Charged Per',
|
||||
'guest' => 'Guest',
|
||||
'table' => 'Table',
|
||||
'prevent-scheduling-before' => 'Prevent Scheduling Before',
|
||||
'guest-limit' => 'Guest Limit Per Table',
|
||||
'guest-capacity' => 'Guest Capacity',
|
||||
'type' => 'Type',
|
||||
'many-bookings-for-one-day' => 'Many Bookings for One Day',
|
||||
'one-booking-for-many-days' => 'One Booking for Many Days',
|
||||
'day' => 'Day',
|
||||
'status' => 'Status',
|
||||
'open' => 'Open',
|
||||
'close' => 'Close',
|
||||
'time-error' => 'The to time must be greater than the from time.'
|
||||
]
|
||||
],
|
||||
|
||||
'sales' => [
|
||||
'bookings' => [
|
||||
'title' => 'Bookings',
|
||||
]
|
||||
],
|
||||
|
||||
'datagrid' => [
|
||||
'from' => 'From',
|
||||
'to' => 'To'
|
||||
]
|
||||
],
|
||||
|
||||
'shop' => [
|
||||
'products' => [
|
||||
'booking-information' => 'Booking Information',
|
||||
'location' => 'Location',
|
||||
'contact' => 'Contact',
|
||||
'email' => 'Email',
|
||||
'slot-duration' => 'Slot Duration',
|
||||
'slot-duration-in-minutes' => ':minutes Minutes',
|
||||
'today-availability' => 'Today Availability',
|
||||
'slots-for-all-days' => 'Show for all days',
|
||||
'sunday' => 'Sunday',
|
||||
'monday' => 'Monday',
|
||||
'tuesday' => 'Tuesday',
|
||||
'wednesday' => 'Wednesday',
|
||||
'thursday' => 'Thursday',
|
||||
'friday' => 'Friday',
|
||||
'saturday' => 'Saturday',
|
||||
'closed' => 'Closed',
|
||||
'book-an-appointment' => 'Book an Appointment',
|
||||
'date' => 'Date',
|
||||
'slot' => 'Slot',
|
||||
'no-slots-available' => 'No slots available',
|
||||
'rent-an-item' => 'Rent an Item',
|
||||
'choose-rent-option' => 'Choose Rent Option',
|
||||
'daily-basis' => 'Daily Basis',
|
||||
'hourly-basis' => 'Hourly Basis',
|
||||
'select-time-slot'=> 'Select time slot',
|
||||
'select-slot' => 'Select Slot',
|
||||
'select-date' => 'Select date',
|
||||
'select-rent-time' => 'Select Rent Time',
|
||||
'from' => 'From',
|
||||
'to' => 'To',
|
||||
'book-a-table' => 'Book a Table',
|
||||
'special-notes' => 'Special Request/Notes',
|
||||
'event-on' => 'Event On',
|
||||
'book-your-ticket' => 'Book Your Ticket',
|
||||
'per-ticket-price' => ':price Per Ticket',
|
||||
'number-of-tickets' => 'Number of Tickets',
|
||||
'total-tickets' => 'Total Tickets',
|
||||
'base-price' => 'Base Price',
|
||||
'total-price' => 'Total Price',
|
||||
'base-price-info' => '(This will be apply to each type of ticket for each quantity)'
|
||||
],
|
||||
|
||||
'cart' => [
|
||||
'renting_type' => 'Rent Type',
|
||||
'daily' => 'Daily',
|
||||
'hourly' => 'Hourly',
|
||||
'event-ticket' => 'Event Ticket',
|
||||
'event-from' => 'Event From',
|
||||
'event-till' => 'Event Till',
|
||||
'rent-type' => 'Rent Type',
|
||||
'rent-from' => 'Rent From',
|
||||
'rent-till' => 'Rent Till',
|
||||
'booking-from' => 'Booking From',
|
||||
'booking-till' => 'Booking Till',
|
||||
'special-note' => 'Special Request/Notes',
|
||||
]
|
||||
]
|
||||
];
|
||||
|
|
@ -0,0 +1,142 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'admin' => [
|
||||
'catalog' => [
|
||||
'products' => [
|
||||
'booking' => 'Booking Information',
|
||||
'booking-type' => 'Booking Type',
|
||||
'default' => 'Default',
|
||||
'appointment-booking' => 'Appointment Booking',
|
||||
'event-booking' => 'Event Booking',
|
||||
'rental-booking' => 'Rental Booking',
|
||||
'table-booking' => 'Table Booking',
|
||||
'slot-duration' => 'Slot Duration (Mins)',
|
||||
'break-time' => 'Break Time b/w Slots (Mins)',
|
||||
'available-every-week' => 'Available Every Week',
|
||||
'yes' => 'Yes',
|
||||
'no' => 'No',
|
||||
'available-from' => 'Available From',
|
||||
'available-to' => 'Available To',
|
||||
'same-slot-all-days' => 'Same Slot All Days',
|
||||
'slot-has-quantity' => 'Slot has Quantity',
|
||||
'slots' => 'Slots',
|
||||
'from' => 'From',
|
||||
'to' => 'To',
|
||||
'qty' => 'Qty',
|
||||
'add-slot' => 'Add Slot',
|
||||
'sunday' => 'Sunday',
|
||||
'monday' => 'Monday',
|
||||
'tuesday' => 'Tuesday',
|
||||
'wednesday' => 'Wednesday',
|
||||
'thursday' => 'Thursday',
|
||||
'friday' => 'Friday',
|
||||
'saturday' => 'Saturday',
|
||||
'renting-type' => 'Renting Type',
|
||||
'daily' => 'Daily Basis',
|
||||
'hourly' => 'Hourly Basis',
|
||||
'daily-hourly' => 'Both (Daily and Hourly Basis)',
|
||||
'daily-price' => 'Daily Price',
|
||||
'hourly-price' => 'Hourly Price',
|
||||
'location' => 'Location',
|
||||
'show-location' => 'Show Location',
|
||||
'event-start-date' => 'Event Start Date',
|
||||
'event-end-date' => 'Event End Date',
|
||||
'tickets' => 'Tickets',
|
||||
'add-ticket' => 'Add Ticket',
|
||||
'name' => 'Name',
|
||||
'price' => 'Price',
|
||||
'quantity' => 'Quantity',
|
||||
'description' => 'Description',
|
||||
'special-price' => 'Special Price',
|
||||
'special-price-from' => 'Valid From',
|
||||
'special-price-to' => 'Valid Until',
|
||||
'charged-per' => 'Charged Per',
|
||||
'guest' => 'Guest',
|
||||
'table' => 'Table',
|
||||
'prevent-scheduling-before' => 'Prevent Scheduling Before',
|
||||
'guest-limit' => 'Guest Limit Per Table',
|
||||
'guest-capacity' => 'Guest Capacity',
|
||||
'type' => 'Type',
|
||||
'many-bookings-for-one-day' => 'Many Bookings for One Day',
|
||||
'one-booking-for-many-days' => 'One Booking for Many Days',
|
||||
'day' => 'Day',
|
||||
'status' => 'Status',
|
||||
'open' => 'Open',
|
||||
'close' => 'Close',
|
||||
'time-error' => 'The to time must be greater than the from time.'
|
||||
]
|
||||
],
|
||||
|
||||
'sales' => [
|
||||
'bookings' => [
|
||||
'title' => 'Bookings',
|
||||
]
|
||||
],
|
||||
|
||||
'datagrid' => [
|
||||
'from' => 'From',
|
||||
'to' => 'To'
|
||||
]
|
||||
],
|
||||
|
||||
'shop' => [
|
||||
'products' => [
|
||||
'booking-information' => 'Booking Information',
|
||||
'location' => 'Location',
|
||||
'contact' => 'Contact',
|
||||
'email' => 'Email',
|
||||
'slot-duration' => 'Slot Duration',
|
||||
'slot-duration-in-minutes' => ':minutes Minutes',
|
||||
'today-availability' => 'Today Availability',
|
||||
'slots-for-all-days' => 'Show for all days',
|
||||
'sunday' => 'Sunday',
|
||||
'monday' => 'Monday',
|
||||
'tuesday' => 'Tuesday',
|
||||
'wednesday' => 'Wednesday',
|
||||
'thursday' => 'Thursday',
|
||||
'friday' => 'Friday',
|
||||
'saturday' => 'Saturday',
|
||||
'closed' => 'Closed',
|
||||
'book-an-appointment' => 'Book an Appointment',
|
||||
'date' => 'Date',
|
||||
'slot' => 'Slot',
|
||||
'no-slots-available' => 'No slots available',
|
||||
'rent-an-item' => 'Rent an Item',
|
||||
'choose-rent-option' => 'Choose Rent Option',
|
||||
'daily-basis' => 'Daily Basis',
|
||||
'hourly-basis' => 'Hourly Basis',
|
||||
'select-time-slot'=> 'Select time slot',
|
||||
'select-slot' => 'Select Slot',
|
||||
'select-date' => 'Select date',
|
||||
'select-rent-time' => 'Select Rent Time',
|
||||
'from' => 'From',
|
||||
'to' => 'To',
|
||||
'book-a-table' => 'Book a Table',
|
||||
'special-notes' => 'Special Request/Notes',
|
||||
'event-on' => 'Event On',
|
||||
'book-your-ticket' => 'Book Your Ticket',
|
||||
'per-ticket-price' => ':price Per Ticket',
|
||||
'number-of-tickets' => 'Number of Tickets',
|
||||
'total-tickets' => 'Total Tickets',
|
||||
'base-price' => 'Base Price',
|
||||
'total-price' => 'Total Price',
|
||||
'base-price-info' => '(This will be apply to each type of ticket for each quantity)'
|
||||
],
|
||||
|
||||
'cart' => [
|
||||
'renting_type' => 'Rent Type',
|
||||
'daily' => 'Daily',
|
||||
'hourly' => 'Hourly',
|
||||
'event-ticket' => 'Event Ticket',
|
||||
'event-from' => 'Event From',
|
||||
'event-till' => 'Event Till',
|
||||
'rent-type' => 'Rent Type',
|
||||
'rent-from' => 'Rent From',
|
||||
'rent-till' => 'Rent Till',
|
||||
'booking-from' => 'Booking From',
|
||||
'booking-till' => 'Booking Till',
|
||||
'special-note' => 'Special Request/Notes',
|
||||
]
|
||||
]
|
||||
];
|
||||
|
|
@ -0,0 +1,142 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'admin' => [
|
||||
'catalog' => [
|
||||
'products' => [
|
||||
'booking' => 'Booking Information',
|
||||
'booking-type' => 'Booking Type',
|
||||
'default' => 'Default',
|
||||
'appointment-booking' => 'Appointment Booking',
|
||||
'event-booking' => 'Event Booking',
|
||||
'rental-booking' => 'Rental Booking',
|
||||
'table-booking' => 'Table Booking',
|
||||
'slot-duration' => 'Slot Duration (Mins)',
|
||||
'break-time' => 'Break Time b/w Slots (Mins)',
|
||||
'available-every-week' => 'Available Every Week',
|
||||
'yes' => 'Yes',
|
||||
'no' => 'No',
|
||||
'available-from' => 'Available From',
|
||||
'available-to' => 'Available To',
|
||||
'same-slot-all-days' => 'Same Slot All Days',
|
||||
'slot-has-quantity' => 'Slot has Quantity',
|
||||
'slots' => 'Slots',
|
||||
'from' => 'From',
|
||||
'to' => 'To',
|
||||
'qty' => 'Qty',
|
||||
'add-slot' => 'Add Slot',
|
||||
'sunday' => 'Sunday',
|
||||
'monday' => 'Monday',
|
||||
'tuesday' => 'Tuesday',
|
||||
'wednesday' => 'Wednesday',
|
||||
'thursday' => 'Thursday',
|
||||
'friday' => 'Friday',
|
||||
'saturday' => 'Saturday',
|
||||
'renting-type' => 'Renting Type',
|
||||
'daily' => 'Daily Basis',
|
||||
'hourly' => 'Hourly Basis',
|
||||
'daily-hourly' => 'Both (Daily and Hourly Basis)',
|
||||
'daily-price' => 'Daily Price',
|
||||
'hourly-price' => 'Hourly Price',
|
||||
'location' => 'Location',
|
||||
'show-location' => 'Show Location',
|
||||
'event-start-date' => 'Event Start Date',
|
||||
'event-end-date' => 'Event End Date',
|
||||
'tickets' => 'Tickets',
|
||||
'add-ticket' => 'Add Ticket',
|
||||
'name' => 'Name',
|
||||
'price' => 'Price',
|
||||
'quantity' => 'Quantity',
|
||||
'description' => 'Description',
|
||||
'special-price' => 'Special Price',
|
||||
'special-price-from' => 'Valid From',
|
||||
'special-price-to' => 'Valid Until',
|
||||
'charged-per' => 'Charged Per',
|
||||
'guest' => 'Guest',
|
||||
'table' => 'Table',
|
||||
'prevent-scheduling-before' => 'Prevent Scheduling Before',
|
||||
'guest-limit' => 'Guest Limit Per Table',
|
||||
'guest-capacity' => 'Guest Capacity',
|
||||
'type' => 'Type',
|
||||
'many-bookings-for-one-day' => 'Many Bookings for One Day',
|
||||
'one-booking-for-many-days' => 'One Booking for Many Days',
|
||||
'day' => 'Day',
|
||||
'status' => 'Status',
|
||||
'open' => 'Open',
|
||||
'close' => 'Close',
|
||||
'time-error' => 'The to time must be greater than the from time.'
|
||||
]
|
||||
],
|
||||
|
||||
'sales' => [
|
||||
'bookings' => [
|
||||
'title' => 'Bookings',
|
||||
]
|
||||
],
|
||||
|
||||
'datagrid' => [
|
||||
'from' => 'From',
|
||||
'to' => 'To'
|
||||
]
|
||||
],
|
||||
|
||||
'shop' => [
|
||||
'products' => [
|
||||
'booking-information' => 'Booking Information',
|
||||
'location' => 'Location',
|
||||
'contact' => 'Contact',
|
||||
'email' => 'Email',
|
||||
'slot-duration' => 'Slot Duration',
|
||||
'slot-duration-in-minutes' => ':minutes Minutes',
|
||||
'today-availability' => 'Today Availability',
|
||||
'slots-for-all-days' => 'Show for all days',
|
||||
'sunday' => 'Sunday',
|
||||
'monday' => 'Monday',
|
||||
'tuesday' => 'Tuesday',
|
||||
'wednesday' => 'Wednesday',
|
||||
'thursday' => 'Thursday',
|
||||
'friday' => 'Friday',
|
||||
'saturday' => 'Saturday',
|
||||
'closed' => 'Closed',
|
||||
'book-an-appointment' => 'Book an Appointment',
|
||||
'date' => 'Date',
|
||||
'slot' => 'Slot',
|
||||
'no-slots-available' => 'No slots available',
|
||||
'rent-an-item' => 'Rent an Item',
|
||||
'choose-rent-option' => 'Choose Rent Option',
|
||||
'daily-basis' => 'Daily Basis',
|
||||
'hourly-basis' => 'Hourly Basis',
|
||||
'select-time-slot'=> 'Select time slot',
|
||||
'select-slot' => 'Select Slot',
|
||||
'select-date' => 'Select date',
|
||||
'select-rent-time' => 'Select Rent Time',
|
||||
'from' => 'From',
|
||||
'to' => 'To',
|
||||
'book-a-table' => 'Book a Table',
|
||||
'special-notes' => 'Special Request/Notes',
|
||||
'event-on' => 'Event On',
|
||||
'book-your-ticket' => 'Book Your Ticket',
|
||||
'per-ticket-price' => ':price Per Ticket',
|
||||
'number-of-tickets' => 'Number of Tickets',
|
||||
'total-tickets' => 'Total Tickets',
|
||||
'base-price' => 'Base Price',
|
||||
'total-price' => 'Total Price',
|
||||
'base-price-info' => '(This will be apply to each type of ticket for each quantity)'
|
||||
],
|
||||
|
||||
'cart' => [
|
||||
'renting_type' => 'Rent Type',
|
||||
'daily' => 'Daily',
|
||||
'hourly' => 'Hourly',
|
||||
'event-ticket' => 'Event Ticket',
|
||||
'event-from' => 'Event From',
|
||||
'event-till' => 'Event Till',
|
||||
'rent-type' => 'Rent Type',
|
||||
'rent-from' => 'Rent From',
|
||||
'rent-till' => 'Rent Till',
|
||||
'booking-from' => 'Booking From',
|
||||
'booking-till' => 'Booking Till',
|
||||
'special-note' => 'Special Request/Notes',
|
||||
]
|
||||
]
|
||||
];
|
||||
|
|
@ -0,0 +1,142 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'admin' => [
|
||||
'catalog' => [
|
||||
'products' => [
|
||||
'booking' => 'Booking Information',
|
||||
'booking-type' => 'Booking Type',
|
||||
'default' => 'Default',
|
||||
'appointment-booking' => 'Appointment Booking',
|
||||
'event-booking' => 'Event Booking',
|
||||
'rental-booking' => 'Rental Booking',
|
||||
'table-booking' => 'Table Booking',
|
||||
'slot-duration' => 'Slot Duration (Mins)',
|
||||
'break-time' => 'Break Time b/w Slots (Mins)',
|
||||
'available-every-week' => 'Available Every Week',
|
||||
'yes' => 'Yes',
|
||||
'no' => 'No',
|
||||
'available-from' => 'Available From',
|
||||
'available-to' => 'Available To',
|
||||
'same-slot-all-days' => 'Same Slot All Days',
|
||||
'slot-has-quantity' => 'Slot has Quantity',
|
||||
'slots' => 'Slots',
|
||||
'from' => 'From',
|
||||
'to' => 'To',
|
||||
'qty' => 'Qty',
|
||||
'add-slot' => 'Add Slot',
|
||||
'sunday' => 'Sunday',
|
||||
'monday' => 'Monday',
|
||||
'tuesday' => 'Tuesday',
|
||||
'wednesday' => 'Wednesday',
|
||||
'thursday' => 'Thursday',
|
||||
'friday' => 'Friday',
|
||||
'saturday' => 'Saturday',
|
||||
'renting-type' => 'Renting Type',
|
||||
'daily' => 'Daily Basis',
|
||||
'hourly' => 'Hourly Basis',
|
||||
'daily-hourly' => 'Both (Daily and Hourly Basis)',
|
||||
'daily-price' => 'Daily Price',
|
||||
'hourly-price' => 'Hourly Price',
|
||||
'location' => 'Location',
|
||||
'show-location' => 'Show Location',
|
||||
'event-start-date' => 'Event Start Date',
|
||||
'event-end-date' => 'Event End Date',
|
||||
'tickets' => 'Tickets',
|
||||
'add-ticket' => 'Add Ticket',
|
||||
'name' => 'Name',
|
||||
'price' => 'Price',
|
||||
'quantity' => 'Quantity',
|
||||
'description' => 'Description',
|
||||
'special-price' => 'Special Price',
|
||||
'special-price-from' => 'Valid From',
|
||||
'special-price-to' => 'Valid Until',
|
||||
'charged-per' => 'Charged Per',
|
||||
'guest' => 'Guest',
|
||||
'table' => 'Table',
|
||||
'prevent-scheduling-before' => 'Prevent Scheduling Before',
|
||||
'guest-limit' => 'Guest Limit Per Table',
|
||||
'guest-capacity' => 'Guest Capacity',
|
||||
'type' => 'Type',
|
||||
'many-bookings-for-one-day' => 'Many Bookings for One Day',
|
||||
'one-booking-for-many-days' => 'One Booking for Many Days',
|
||||
'day' => 'Day',
|
||||
'status' => 'Status',
|
||||
'open' => 'Open',
|
||||
'close' => 'Close',
|
||||
'time-error' => 'The to time must be greater than the from time.'
|
||||
]
|
||||
],
|
||||
|
||||
'sales' => [
|
||||
'bookings' => [
|
||||
'title' => 'Bookings',
|
||||
]
|
||||
],
|
||||
|
||||
'datagrid' => [
|
||||
'from' => 'From',
|
||||
'to' => 'To'
|
||||
]
|
||||
],
|
||||
|
||||
'shop' => [
|
||||
'products' => [
|
||||
'booking-information' => 'Booking Information',
|
||||
'location' => 'Location',
|
||||
'contact' => 'Contact',
|
||||
'email' => 'Email',
|
||||
'slot-duration' => 'Slot Duration',
|
||||
'slot-duration-in-minutes' => ':minutes Minutes',
|
||||
'today-availability' => 'Today Availability',
|
||||
'slots-for-all-days' => 'Show for all days',
|
||||
'sunday' => 'Sunday',
|
||||
'monday' => 'Monday',
|
||||
'tuesday' => 'Tuesday',
|
||||
'wednesday' => 'Wednesday',
|
||||
'thursday' => 'Thursday',
|
||||
'friday' => 'Friday',
|
||||
'saturday' => 'Saturday',
|
||||
'closed' => 'Closed',
|
||||
'book-an-appointment' => 'Book an Appointment',
|
||||
'date' => 'Date',
|
||||
'slot' => 'Slot',
|
||||
'no-slots-available' => 'No slots available',
|
||||
'rent-an-item' => 'Rent an Item',
|
||||
'choose-rent-option' => 'Choose Rent Option',
|
||||
'daily-basis' => 'Daily Basis',
|
||||
'hourly-basis' => 'Hourly Basis',
|
||||
'select-time-slot'=> 'Select time slot',
|
||||
'select-slot' => 'Select Slot',
|
||||
'select-date' => 'Select date',
|
||||
'select-rent-time' => 'Select Rent Time',
|
||||
'from' => 'From',
|
||||
'to' => 'To',
|
||||
'book-a-table' => 'Book a Table',
|
||||
'special-notes' => 'Special Request/Notes',
|
||||
'event-on' => 'Event On',
|
||||
'book-your-ticket' => 'Book Your Ticket',
|
||||
'per-ticket-price' => ':price Per Ticket',
|
||||
'number-of-tickets' => 'Number of Tickets',
|
||||
'total-tickets' => 'Total Tickets',
|
||||
'base-price' => 'Base Price',
|
||||
'total-price' => 'Total Price',
|
||||
'base-price-info' => '(This will be apply to each type of ticket for each quantity)'
|
||||
],
|
||||
|
||||
'cart' => [
|
||||
'renting_type' => 'Rent Type',
|
||||
'daily' => 'Daily',
|
||||
'hourly' => 'Hourly',
|
||||
'event-ticket' => 'Event Ticket',
|
||||
'event-from' => 'Event From',
|
||||
'event-till' => 'Event Till',
|
||||
'rent-type' => 'Rent Type',
|
||||
'rent-from' => 'Rent From',
|
||||
'rent-till' => 'Rent Till',
|
||||
'booking-from' => 'Booking From',
|
||||
'booking-till' => 'Booking Till',
|
||||
'special-note' => 'Special Request/Notes',
|
||||
]
|
||||
]
|
||||
];
|
||||
|
|
@ -5,7 +5,7 @@ namespace Webkul\Product\Helpers;
|
|||
class Toolbar extends AbstractProduct
|
||||
{
|
||||
/**
|
||||
* Returns available sort orders
|
||||
* Returns available sort orders.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
|
|
@ -21,7 +21,7 @@ class Toolbar extends AbstractProduct
|
|||
];
|
||||
}
|
||||
/**
|
||||
* Returns available limits
|
||||
* Returns available limits.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
|
|
@ -37,9 +37,9 @@ class Toolbar extends AbstractProduct
|
|||
}
|
||||
|
||||
/**
|
||||
* Returns the sort order url
|
||||
* Returns the sort order url.
|
||||
*
|
||||
* @param string $key
|
||||
* @param string $key
|
||||
* @return string
|
||||
*/
|
||||
public function getOrderUrl($key)
|
||||
|
|
@ -53,7 +53,7 @@ class Toolbar extends AbstractProduct
|
|||
}
|
||||
|
||||
/**
|
||||
* Returns the limit url
|
||||
* Returns the limit url.
|
||||
*
|
||||
* @param int $limit
|
||||
* @return string
|
||||
|
|
@ -66,9 +66,9 @@ class Toolbar extends AbstractProduct
|
|||
}
|
||||
|
||||
/**
|
||||
* Returns the mode url
|
||||
* Returns the mode url.
|
||||
*
|
||||
* @param string $mode
|
||||
* @param string $mode
|
||||
* @return string
|
||||
*/
|
||||
public function getModeUrl($mode)
|
||||
|
|
@ -79,7 +79,7 @@ class Toolbar extends AbstractProduct
|
|||
}
|
||||
|
||||
/**
|
||||
* Checks if sort order is active
|
||||
* Checks if sort order is active.
|
||||
*
|
||||
* @param string $key
|
||||
* @return bool
|
||||
|
|
@ -93,8 +93,8 @@ class Toolbar extends AbstractProduct
|
|||
return true;
|
||||
} elseif (! isset($params['sort'])) {
|
||||
$sortBy = core()->getConfigData('catalog.products.storefront.sort_by')
|
||||
? core()->getConfigData('catalog.products.storefront.sort_by')
|
||||
: 'name-desc';
|
||||
? core()->getConfigData('catalog.products.storefront.sort_by')
|
||||
: 'name-desc';
|
||||
|
||||
if ($key == $sortBy) {
|
||||
return true;
|
||||
|
|
@ -105,7 +105,7 @@ class Toolbar extends AbstractProduct
|
|||
}
|
||||
|
||||
/**
|
||||
* Checks if limit is active
|
||||
* Checks if limit is active.
|
||||
*
|
||||
* @param int $limit
|
||||
* @return bool
|
||||
|
|
@ -122,7 +122,7 @@ class Toolbar extends AbstractProduct
|
|||
}
|
||||
|
||||
/**
|
||||
* Checks if mode is active
|
||||
* Checks if mode is active.
|
||||
*
|
||||
* @param string $key
|
||||
* @return bool
|
||||
|
|
@ -132,8 +132,8 @@ class Toolbar extends AbstractProduct
|
|||
$params = request()->input();
|
||||
|
||||
$defaultMode = core()->getConfigData('catalog.products.storefront.mode')
|
||||
? core()->getConfigData('catalog.products.storefront.mode')
|
||||
: 'grid';
|
||||
? core()->getConfigData('catalog.products.storefront.mode')
|
||||
: 'grid';
|
||||
|
||||
if (request()->input() == null && $key == $defaultMode) {
|
||||
return true;
|
||||
|
|
@ -145,7 +145,7 @@ class Toolbar extends AbstractProduct
|
|||
}
|
||||
|
||||
/**
|
||||
* Returns the current mode
|
||||
* Returns the current mode.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
|
|
@ -158,12 +158,12 @@ class Toolbar extends AbstractProduct
|
|||
}
|
||||
|
||||
return core()->getConfigData('catalog.products.storefront.mode')
|
||||
? core()->getConfigData('catalog.products.storefront.mode')
|
||||
: 'grid';
|
||||
? core()->getConfigData('catalog.products.storefront.mode')
|
||||
: 'grid';
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the view option if mode is set by param then it will overwrite default one and return new mode
|
||||
* Returns the view option if mode is set by param then it will overwrite default one and return new mode.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
|
|
@ -195,12 +195,10 @@ class Toolbar extends AbstractProduct
|
|||
*/
|
||||
public function fullUrlWithQuery($additionalQuery)
|
||||
{
|
||||
$queryString = request()->getQueryString();
|
||||
$requestQuery = array_merge(request()->query(), $additionalQuery);
|
||||
|
||||
$additionalQueryString = http_build_query($additionalQuery);
|
||||
$queryString = http_build_query($requestQuery);
|
||||
|
||||
return $queryString
|
||||
? url()->current() . '?' . $queryString . '&' . $additionalQueryString
|
||||
: url()->current() . '?' . $additionalQueryString;
|
||||
return url()->current() . '?' . $queryString;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -350,7 +350,7 @@ return [
|
|||
'page-title' => 'العملاء - قائمة الامنيات',
|
||||
'title' => 'قائمة الأمنيات',
|
||||
'deleteall' => 'احذف الكل',
|
||||
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
|
||||
'confirm-delete-all' => 'هل أنت متأكد أنك تريد حذف كل قائمة الرغبات?',
|
||||
'moveall' => 'نقل الكل إلى عربة التوسق',
|
||||
'move-to-cart' => 'نقل إلى عربة التسوق',
|
||||
'error' => 'لا يمكن إضافة المنتج إلى قائمة الأمنيات ، الرجاء المحاولة لاحقا',
|
||||
|
|
@ -503,8 +503,8 @@ return [
|
|||
'continue-registration' => 'متابعة التسجيل',
|
||||
'proceed-to-checkout' => 'انتقل إلى الخروج',
|
||||
'remove' => 'احذف',
|
||||
'remove-all-items' => 'Remove all items',
|
||||
'confirm-action' => 'Confirm this action?',
|
||||
'remove-all-items' => 'قم بإزالة كافة العناصر',
|
||||
'confirm-action' => 'هل تريد تأكيد هذا الإجراء؟',
|
||||
'remove-link' => 'احذف',
|
||||
'move-to-wishlist' => 'انقل إلى قائمة الأمنيات',
|
||||
'move-to-wishlist-success' => 'نقل العنصر إلى قائمة الأمنيات',
|
||||
|
|
@ -523,9 +523,9 @@ return [
|
|||
'success' => 'تم بنجاح إضافة العنصر إلى العربة',
|
||||
'success-remove' => 'تم إزالة العنصر بنجاح من العربة',
|
||||
'error-add' => 'لا يمكن إضافة العنصر إلى العربة ، رجاء حاول مرة أخرى ',
|
||||
'success-all-remove' => 'All items is successfully removed from the cart.',
|
||||
'inactive' => 'An item is inactive and was removed from cart',
|
||||
'inactive-add' => 'Inactive item cannot be added to cart',
|
||||
'success-all-remove' => 'تمت إزالة جميع العناصر بنجاح من سلة التسوق.',
|
||||
'inactive' => 'عنصر غير نشط وتمت إزالته من سلة التسوق',
|
||||
'inactive-add' => 'لا يمكن إضافة عنصر غير نشط إلى سلة التسوق',
|
||||
],
|
||||
'quantity-error' => 'الكمية المطلوبة غير متوفرة',
|
||||
'cart-subtotal' => 'المجموع الفرعي للمشتريات',
|
||||
|
|
@ -533,7 +533,7 @@ return [
|
|||
'partial-cart-update' => 'تم تحديث بعض المنتجات.',
|
||||
'link-missing' => '',
|
||||
'event' => [
|
||||
'expired' => 'This event has been expired.',
|
||||
'expired' => 'انتهت صلاحية هذا الحدث.',
|
||||
],
|
||||
'minimum-order-message' => 'الحد الأدنى لمبلغ الطلب هو :amount',
|
||||
'suspended-account-message' => 'تم تعليق حسابك.',
|
||||
|
|
|
|||
|
|
@ -500,8 +500,8 @@ return [
|
|||
'proceed-to-checkout' => 'Passer à la caisse',
|
||||
'remove' => 'Supprimer',
|
||||
'remove-link' => 'Supprimer',
|
||||
'remove-all-items' => 'Remove all items',
|
||||
'confirm-action' => 'Confirm this action?',
|
||||
'remove-all-items' => 'Supprimer tous les éléments',
|
||||
'confirm-action' => 'Confirmez cette action?',
|
||||
'move-to-wishlist' => 'Placer dans la liste de souhaits',
|
||||
'move-to-wishlist-success' => 'L\'article a été déplacé vers la liste de souhaits avec succès.',
|
||||
'move-to-wishlist-error' => 'Impossible de déplacer l\'élément vers la liste de souhaits, veuillez réessayer plus tard.',
|
||||
|
|
|
|||
|
|
@ -503,8 +503,8 @@ return [
|
|||
'proceed-to-checkout' => 'चेक आउट करने के लिए आगे बढ़ें',
|
||||
'remove' => 'निकालना',
|
||||
'remove-link' => 'निकालना',
|
||||
'remove-all-items' => 'Remove all items',
|
||||
'confirm-action' => 'Confirm this action?',
|
||||
'remove-all-items' => 'सभी आइटम हटाएं',
|
||||
'confirm-action' => 'इस क्रिया की पुष्टि करें?',
|
||||
'move-to-wishlist' => 'इच्छा सूची की ओर बदें',
|
||||
'move-to-wishlist-success' => 'आइटम सफलतापूर्वक इच्छा सूची में ले जाया गया।',
|
||||
'move-to-wishlist-error' => 'आइटम को इच्छा सूची में नहीं ले जाया जा सकता, कृपया बाद में पुन: प्रयास करें।',
|
||||
|
|
@ -520,7 +520,7 @@ return [
|
|||
'error_remove' => 'कार्ट से निकालने के लिए कोई आइटम नहीं है।',
|
||||
'success' => 'आइटम सफलतापूर्वक कार्ट में जोड़ा गया।',
|
||||
'success-remove' => 'आइटम कार्ट से सफलतापूर्वक हटा दिया गया है।',
|
||||
'success-all-remove' => 'All items is successfully removed from the cart.',
|
||||
'success-all-remove' => 'कार्ट से सभी आइटम सफलतापूर्वक निकाल दिए गए हैं.',
|
||||
'error-add' => 'आइटम कार्ट में नहीं जोड़ा जा सकता, कृपया बाद में पुन: प्रयास करें।',
|
||||
'inactive' => 'एक आइटम निष्क्रिय है और उसे कार्ट से निकाल दिया गया था।',
|
||||
'inactive-add' => 'निष्क्रिय आइटम कार्ट में नहीं जोड़ा जा सकता है।',
|
||||
|
|
@ -531,7 +531,7 @@ return [
|
|||
'partial-cart-update' => 'केवल कुछ उत्पाद अपडेट किए गए थे',
|
||||
'link-missing' => '',
|
||||
'event' => [
|
||||
'expired' => 'This event has been expired.',
|
||||
'expired' => 'इस घटना की समय सीमा समाप्त हो गई है.',
|
||||
],
|
||||
'minimum-order-message' => 'न्यूनतम आदेश राशि है: राशि',
|
||||
'suspended-account-message' => 'आपका खाता निरस्त कर दिया गया है।',
|
||||
|
|
|
|||
|
|
@ -493,8 +493,8 @@ return [
|
|||
'proceed-to-checkout' => 'Finalizar Compra',
|
||||
'remove' => 'Remover',
|
||||
'remove-link' => 'Remover',
|
||||
'remove-all-items' => 'Remove all items',
|
||||
'confirm-action' => 'Confirm this action?',
|
||||
'remove-all-items' => 'Remover todos os itens',
|
||||
'confirm-action' => 'Confirme esta ação?',
|
||||
'move-to-wishlist' => 'Mover para Lista de Desejos',
|
||||
'move-to-wishlist-success' => 'Item Movido para Lista de Desejos',
|
||||
'move-to-wishlist-error' => 'Não foi possivel Mover Item para Lista de Desejos, Por favor, tente novamente mais tarde',
|
||||
|
|
@ -511,7 +511,7 @@ return [
|
|||
'error_remove' => 'Nenhum item para remover do carrinho',
|
||||
'success' => 'Item foi adicionado com sucesso ao carrinho',
|
||||
'success-remove' => 'Item foi removido com sucesso do carrinho',
|
||||
'success-all-remove' => 'All items is successfully removed from the cart.',
|
||||
'success-all-remove' => 'Todos os itens foram removidos com sucesso do carrinho.',
|
||||
'error-add' => 'Item não pode ser adicionado ao carrinho, por favor, tente novamente mais tarde',
|
||||
'inactive' => 'An item is inactive and was removed from cart',
|
||||
'inactive-add' => 'Inactive item cannot be added to cart',
|
||||
|
|
|
|||
|
|
@ -208,18 +208,20 @@
|
|||
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<p>{{ $invoice->order->billing_address->company_name ?? '' }}</p>
|
||||
<p>{{ $invoice->order->billing_address->name }}</p>
|
||||
<p>{{ $invoice->order->billing_address->address1 }}</p>
|
||||
<p>{{ $invoice->order->billing_address->city }}</p>
|
||||
<p>{{ $invoice->order->billing_address->state }}</p>
|
||||
<p>
|
||||
{{ core()->country_name($invoice->order->billing_address->country) }}
|
||||
{{ $invoice->order->billing_address->postcode }}
|
||||
</p>
|
||||
{{ __('shop::app.customer.account.order.view.contact') }} : {{ $invoice->order->billing_address->phone }}
|
||||
</td>
|
||||
@if ($invoice->order->billing_address)
|
||||
<td>
|
||||
<p>{{ $invoice->order->billing_address->company_name ?? '' }}</p>
|
||||
<p>{{ $invoice->order->billing_address->name }}</p>
|
||||
<p>{{ $invoice->order->billing_address->address1 }}</p>
|
||||
<p>{{ $invoice->order->billing_address->city }}</p>
|
||||
<p>{{ $invoice->order->billing_address->state }}</p>
|
||||
<p>
|
||||
{{ core()->country_name($invoice->order->billing_address->country) }}
|
||||
{{ $invoice->order->billing_address->postcode }}
|
||||
</p>
|
||||
{{ __('shop::app.customer.account.order.view.contact') }} : {{ $invoice->order->billing_address->phone }}
|
||||
</td>
|
||||
@endif
|
||||
|
||||
@if ($invoice->order->shipping_address)
|
||||
<td>
|
||||
|
|
|
|||
|
|
@ -136,7 +136,7 @@
|
|||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="totals">
|
||||
<table class="sale-summary">
|
||||
|
|
@ -271,7 +271,7 @@
|
|||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="totals">
|
||||
|
|
@ -360,7 +360,7 @@
|
|||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -474,17 +474,19 @@
|
|||
<div class="sale-section">
|
||||
<div class="section-content" style="border-bottom: 0">
|
||||
<div class="order-box-container">
|
||||
<div class="box">
|
||||
<div class="box-title">
|
||||
{{ __('shop::app.customer.account.order.view.billing-address') }}
|
||||
</div>
|
||||
@if ($order->billing_address)
|
||||
<div class="box">
|
||||
<div class="box-title">
|
||||
{{ __('shop::app.customer.account.order.view.billing-address') }}
|
||||
</div>
|
||||
|
||||
<div class="box-content">
|
||||
@include ('admin::sales.address', ['address' => $order->billing_address])
|
||||
<div class="box-content">
|
||||
@include ('admin::sales.address', ['address' => $order->billing_address])
|
||||
|
||||
{!! view_render_event('bagisto.shop.customers.account.orders.view.billing-address.after', ['order' => $order]) !!}
|
||||
{!! view_render_event('bagisto.shop.customers.account.orders.view.billing-address.after', ['order' => $order]) !!}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@if ($order->shipping_address)
|
||||
<div class="box">
|
||||
|
|
|
|||
|
|
@ -20,9 +20,9 @@
|
|||
</form>
|
||||
|
||||
@if ($isSharingEnabled)
|
||||
<a
|
||||
<a
|
||||
href="javascript:void(0);"
|
||||
onclick="window.showShareWishlistModal();">
|
||||
onclick="window.showShareWishlistModal();" class="m-20">
|
||||
{{ __('shop::app.customer.account.wishlist.share') }}
|
||||
</a>
|
||||
@endif
|
||||
|
|
|
|||
|
|
@ -79,58 +79,60 @@
|
|||
</div>
|
||||
@endif
|
||||
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.billing-address') }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->company_name ?? '' }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->name }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->address1 }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->postcode . " " . $order->billing_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->state }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ core()->country_name($order->billing_address->country) }}
|
||||
</div>
|
||||
|
||||
<div>---</div>
|
||||
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.contact') }} : {{ $order->billing_address->phone }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px; color: #242424;">
|
||||
{{ __('shop::app.mail.order.payment') }}
|
||||
</div>
|
||||
|
||||
<div style="font-weight: bold; font-size: 16px; color: #242424; margin-bottom: 20px;">
|
||||
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
|
||||
</div>
|
||||
|
||||
@php $additionalDetails = \Webkul\Payment\Payment::getAdditionalDetails($order->payment->method); @endphp
|
||||
|
||||
@if (! empty($additionalDetails))
|
||||
<div style="font-size: 16px; color: #242424;">
|
||||
<div>{{ $additionalDetails['title'] }}</div>
|
||||
<div>{{ $additionalDetails['value'] }}</div>
|
||||
@if ($order->billing_address)
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.billing-address') }}
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->company_name ?? '' }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->name }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->address1 }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->postcode . " " . $order->billing_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->state }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ core()->country_name($order->billing_address->country) }}
|
||||
</div>
|
||||
|
||||
<div>---</div>
|
||||
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.contact') }} : {{ $order->billing_address->phone }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px; color: #242424;">
|
||||
{{ __('shop::app.mail.order.payment') }}
|
||||
</div>
|
||||
|
||||
<div style="font-weight: bold; font-size: 16px; color: #242424; margin-bottom: 20px;">
|
||||
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
|
||||
</div>
|
||||
|
||||
@php $additionalDetails = \Webkul\Payment\Payment::getAdditionalDetails($order->payment->method); @endphp
|
||||
|
||||
@if (! empty($additionalDetails))
|
||||
<div style="font-size: 16px; color: #242424;">
|
||||
<div>{{ $additionalDetails['title'] }}</div>
|
||||
<div>{{ $additionalDetails['value'] }}</div>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<div class="section-content">
|
||||
|
|
|
|||
|
|
@ -34,103 +34,107 @@
|
|||
|
||||
|
||||
<div style="display: flex;flex-direction: row;margin-top: 20px;justify-content: space-between;margin-bottom: 40px;">
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.shipping-address') }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->company_name ?? '' }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->name }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->address1 }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->postcode . " " . $order->shipping_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->state }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ core()->country_name($order->shipping_address->country) }}
|
||||
</div>
|
||||
|
||||
<div>---</div>
|
||||
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.contact') }} : {{ $order->shipping_address->phone }}
|
||||
</div>
|
||||
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.shipping') }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px;color: #242424;">
|
||||
<div style="font-weight: bold;">
|
||||
{{ $order->shipping_title }}
|
||||
@if ($order->shipping_address)
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.shipping-address') }}
|
||||
</div>
|
||||
|
||||
<div style="margin-top: 5px;">
|
||||
<span style="font-weight: bold;">{{ __('shop::app.mail.shipment.carrier') }} : </span>{{ $shipment->carrier_title }}
|
||||
<div>
|
||||
{{ $order->shipping_address->company_name ?? '' }}
|
||||
</div>
|
||||
|
||||
<div style="margin-top: 5px;">
|
||||
<span style="font-weight: bold;">{{ __('shop::app.mail.shipment.tracking-number') }} : </span>{{ $shipment->track_number }}
|
||||
<div>
|
||||
{{ $order->shipping_address->name }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->address1 }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->postcode . " " . $order->shipping_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->state }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ core()->country_name($order->shipping_address->country) }}
|
||||
</div>
|
||||
|
||||
<div>---</div>
|
||||
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.contact') }} : {{ $order->shipping_address->phone }}
|
||||
</div>
|
||||
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.shipping') }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px;color: #242424;">
|
||||
<div style="font-weight: bold;">
|
||||
{{ $order->shipping_title }}
|
||||
</div>
|
||||
|
||||
<div style="margin-top: 5px;">
|
||||
<span style="font-weight: bold;">{{ __('shop::app.mail.shipment.carrier') }} : </span>{{ $shipment->carrier_title }}
|
||||
</div>
|
||||
|
||||
<div style="margin-top: 5px;">
|
||||
<span style="font-weight: bold;">{{ __('shop::app.mail.shipment.tracking-number') }} : </span>{{ $shipment->track_number }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.billing-address') }}
|
||||
</div>
|
||||
@if ($order->billing_address)
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.billing-address') }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->company_name ?? '' }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->company_name ?? '' }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->name }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->name }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->address1 }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->postcode . " " . $order->billing_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->state }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ core()->country_name($order->billing_address->country) }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->address1 }}
|
||||
</div>
|
||||
|
||||
<div>---</div>
|
||||
<div>
|
||||
{{ $order->billing_address->postcode . " " . $order->billing_address->city }}
|
||||
</div>
|
||||
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.contact') }} : {{ $order->billing_address->phone }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->state }}
|
||||
</div>
|
||||
|
||||
<div style="font-weight: bold; font-size: 16px; color: #242424;">
|
||||
{{ __('shop::app.mail.order.payment') }}
|
||||
</div>
|
||||
<div>
|
||||
{{ core()->country_name($order->billing_address->country) }}
|
||||
</div>
|
||||
|
||||
<div style="font-weight: bold; font-size: 16px; color: #242424;">
|
||||
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
|
||||
<div>---</div>
|
||||
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.contact') }} : {{ $order->billing_address->phone }}
|
||||
</div>
|
||||
|
||||
<div style="font-weight: bold; font-size: 16px; color: #242424;">
|
||||
{{ __('shop::app.mail.order.payment') }}
|
||||
</div>
|
||||
|
||||
<div style="font-weight: bold; font-size: 16px; color: #242424;">
|
||||
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<div class="section-content">
|
||||
|
|
|
|||
|
|
@ -78,49 +78,51 @@
|
|||
</div>
|
||||
@endif
|
||||
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.billing-address') }}
|
||||
</div>
|
||||
@if ($order->billing_address)
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.billing-address') }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->company_name ?? '' }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->company_name ?? '' }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->name }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->name }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->address1 }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->address1 }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->postcode . " " . $order->billing_address->city }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->postcode . " " . $order->billing_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->state }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->state }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ core()->country_name($order->billing_address->country) }}
|
||||
</div>
|
||||
<div>
|
||||
{{ core()->country_name($order->billing_address->country) }}
|
||||
</div>
|
||||
|
||||
<div>---</div>
|
||||
<div>---</div>
|
||||
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.contact') }} : {{ $order->billing_address->phone }}
|
||||
</div>
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.contact') }} : {{ $order->billing_address->phone }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px; color: #242424;">
|
||||
{{ __('shop::app.mail.order.payment') }}
|
||||
</div>
|
||||
<div style="font-size: 16px; color: #242424;">
|
||||
{{ __('shop::app.mail.order.payment') }}
|
||||
</div>
|
||||
|
||||
<div style="font-weight: bold;font-size: 16px; color: #242424;">
|
||||
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
|
||||
<div style="font-weight: bold;font-size: 16px; color: #242424;">
|
||||
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<div class="section-content">
|
||||
|
|
|
|||
|
|
@ -75,58 +75,60 @@
|
|||
</div>
|
||||
@endif
|
||||
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.billing-address') }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->company_name ?? '' }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->name }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->address1 }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->postcode ." " . $order->billing_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->state }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ core()->country_name($order->billing_address->country) }}
|
||||
</div>
|
||||
|
||||
<div>---</div>
|
||||
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.contact') }} : {{ $order->billing_address->phone }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px; color: #242424;">
|
||||
{{ __('shop::app.mail.order.payment') }}
|
||||
</div>
|
||||
|
||||
<div style="font-weight: bold; font-size: 16px; color: #242424; margin-bottom: 20px;">
|
||||
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
|
||||
</div>
|
||||
|
||||
@php $additionalDetails = \Webkul\Payment\Payment::getAdditionalDetails($order->payment->method); @endphp
|
||||
|
||||
@if (! empty($additionalDetails))
|
||||
<div style="font-size: 16px; color: #242424;">
|
||||
<div>{{ $additionalDetails['title'] }}</div>
|
||||
<div>{{ $additionalDetails['value'] }}</div>
|
||||
@if ($order->billing_address)
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.billing-address') }}
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->company_name ?? '' }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->name }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->address1 }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->postcode ." " . $order->billing_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->state }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ core()->country_name($order->billing_address->country) }}
|
||||
</div>
|
||||
|
||||
<div>---</div>
|
||||
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.contact') }} : {{ $order->billing_address->phone }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px; color: #242424;">
|
||||
{{ __('shop::app.mail.order.payment') }}
|
||||
</div>
|
||||
|
||||
<div style="font-weight: bold; font-size: 16px; color: #242424; margin-bottom: 20px;">
|
||||
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
|
||||
</div>
|
||||
|
||||
@php $additionalDetails = \Webkul\Payment\Payment::getAdditionalDetails($order->payment->method); @endphp
|
||||
|
||||
@if (! empty($additionalDetails))
|
||||
<div style="font-size: 16px; color: #242424;">
|
||||
<div>{{ $additionalDetails['title'] }}</div>
|
||||
<div>{{ $additionalDetails['value'] }}</div>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<div class="section-content">
|
||||
|
|
|
|||
|
|
@ -77,49 +77,51 @@
|
|||
</div>
|
||||
@endif
|
||||
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.billing-address') }}
|
||||
</div>
|
||||
@if ($order->billing_address)
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.billing-address') }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->company_name ?? '' }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->company_name ?? '' }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->name }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->name }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->address1 }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->address1 }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->postcode . " " . $order->billing_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->state }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->postcode . " " . $order->billing_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ core()->country_name($order->billing_address->country) }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->state }}
|
||||
</div>
|
||||
|
||||
<div>---</div>
|
||||
<div>
|
||||
{{ core()->country_name($order->billing_address->country) }}
|
||||
</div>
|
||||
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.contact') }} : {{ $order->billing_address->phone }}
|
||||
</div>
|
||||
<div>---</div>
|
||||
|
||||
<div style="font-size: 16px; color: #242424;">
|
||||
{{ __('shop::app.mail.order.payment') }}
|
||||
</div>
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.contact') }} : {{ $order->billing_address->phone }}
|
||||
</div>
|
||||
|
||||
<div style="font-weight: bold;font-size: 16px; color: #242424;">
|
||||
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
|
||||
<div style="font-size: 16px; color: #242424;">
|
||||
{{ __('shop::app.mail.order.payment') }}
|
||||
</div>
|
||||
|
||||
<div style="font-weight: bold;font-size: 16px; color: #242424;">
|
||||
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<div class="section-content">
|
||||
|
|
|
|||
|
|
@ -31,103 +31,107 @@
|
|||
</div>
|
||||
|
||||
<div style="display: flex;flex-direction: row;margin-top: 20px;justify-content: space-between;margin-bottom: 40px;">
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.shipping-address') }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->company_name ?? '' }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->name }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->address1 }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->postcode . " " . $order->shipping_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->state }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ core()->country_name($order->shipping_address->country) }}
|
||||
</div>
|
||||
|
||||
<div>---</div>
|
||||
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.contact') }} : {{ $order->shipping_address->phone }}
|
||||
</div>
|
||||
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.shipping') }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px;color: #242424;">
|
||||
<div style="font-weight: bold;">
|
||||
{{ $order->shipping_title }}
|
||||
@if ($order->shipping_address)
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.shipping-address') }}
|
||||
</div>
|
||||
|
||||
<div style="margin-top: 5px;">
|
||||
<span style="font-weight: bold;">{{ __('shop::app.mail.shipment.carrier') }} : </span>{{ $shipment->carrier_title }}
|
||||
<div>
|
||||
{{ $order->shipping_address->company_name ?? '' }}
|
||||
</div>
|
||||
|
||||
<div style="margin-top: 5px;">
|
||||
<span style="font-weight: bold;">{{ __('shop::app.mail.shipment.tracking-number') }} : </span>{{ $shipment->track_number }}
|
||||
<div>
|
||||
{{ $order->shipping_address->name }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->address1 }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->postcode . " " . $order->shipping_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->state }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ core()->country_name($order->shipping_address->country) }}
|
||||
</div>
|
||||
|
||||
<div>---</div>
|
||||
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.contact') }} : {{ $order->shipping_address->phone }}
|
||||
</div>
|
||||
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.shipping') }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px;color: #242424;">
|
||||
<div style="font-weight: bold;">
|
||||
{{ $order->shipping_title }}
|
||||
</div>
|
||||
|
||||
<div style="margin-top: 5px;">
|
||||
<span style="font-weight: bold;">{{ __('shop::app.mail.shipment.carrier') }} : </span>{{ $shipment->carrier_title }}
|
||||
</div>
|
||||
|
||||
<div style="margin-top: 5px;">
|
||||
<span style="font-weight: bold;">{{ __('shop::app.mail.shipment.tracking-number') }} : </span>{{ $shipment->track_number }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.billing-address') }}
|
||||
</div>
|
||||
@if ($order->billing_address)
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.billing-address') }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->company_name ?? '' }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->company_name ?? '' }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->name }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->name }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->address1 }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->address1 }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->postcode . " " . $order->billing_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->state }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->postcode . " " . $order->billing_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ core()->country_name($order->billing_address->country) }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->state }}
|
||||
</div>
|
||||
|
||||
<div>---</div>
|
||||
<div>
|
||||
{{ core()->country_name($order->billing_address->country) }}
|
||||
</div>
|
||||
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.contact') }} : {{ $order->billing_address->phone }}
|
||||
</div>
|
||||
<div>---</div>
|
||||
|
||||
<div style="font-weight: bold; font-size: 16px; color: #242424;">
|
||||
{{ __('shop::app.mail.order.payment') }}
|
||||
</div>
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.contact') }} : {{ $order->billing_address->phone }}
|
||||
</div>
|
||||
|
||||
<div style="font-weight: bold; font-size: 16px; color: #242424;">
|
||||
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
|
||||
<div style="font-weight: bold; font-size: 16px; color: #242424;">
|
||||
{{ __('shop::app.mail.order.payment') }}
|
||||
</div>
|
||||
|
||||
<div style="font-weight: bold; font-size: 16px; color: #242424;">
|
||||
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<div class="section-content">
|
||||
|
|
|
|||
|
|
@ -33,93 +33,97 @@
|
|||
</div>
|
||||
|
||||
<div style="display: flex;flex-direction: row;margin-top: 20px;justify-content: space-between;margin-bottom: 40px;">
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.cancel.shipping-address') }}
|
||||
@if ($order->shipping_address)
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.cancel.shipping-address') }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->company_name ?? '' }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->name }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->address1 }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->postcode . " " . $order->shipping_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->state }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ core()->country_name($order->shipping_address->country) }}
|
||||
</div>
|
||||
|
||||
<div>---</div>
|
||||
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.cancel.contact') }} : {{ $order->shipping_address->phone }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px;color: #242424; font-weight: bold">
|
||||
{{ __('shop::app.mail.order.cancel.shipping') }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px;color: #242424;">
|
||||
{{ $order->shipping_title }}
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->company_name ?? '' }}
|
||||
@if ($order->billing_address)
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.cancel.billing-address') }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->company_name ?? '' }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->name }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->address1 }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->postcode . " " . $order->billing_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->state }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ core()->country_name($order->billing_address->country) }}
|
||||
</div>
|
||||
|
||||
<div>---</div>
|
||||
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.cancel.contact') }} : {{ $order->billing_address->phone }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px; color: #242424; font-weight: bold">
|
||||
{{ __('shop::app.mail.order.cancel.payment') }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px; color: #242424;">
|
||||
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->name }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->address1 }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->postcode . " " . $order->shipping_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->state }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ core()->country_name($order->shipping_address->country) }}
|
||||
</div>
|
||||
|
||||
<div>---</div>
|
||||
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.cancel.contact') }} : {{ $order->shipping_address->phone }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px;color: #242424; font-weight: bold">
|
||||
{{ __('shop::app.mail.order.cancel.shipping') }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px;color: #242424;">
|
||||
{{ $order->shipping_title }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.cancel.billing-address') }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->company_name ?? '' }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->name }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->address1 }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->postcode . " " . $order->billing_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->state }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ core()->country_name($order->billing_address->country) }}
|
||||
</div>
|
||||
|
||||
<div>---</div>
|
||||
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.cancel.contact') }} : {{ $order->billing_address->phone }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px; color: #242424; font-weight: bold">
|
||||
{{ __('shop::app.mail.order.cancel.payment') }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px; color: #242424;">
|
||||
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<div class="section-content">
|
||||
|
|
|
|||
|
|
@ -29,89 +29,93 @@
|
|||
</div>
|
||||
|
||||
<div style="display: flex;flex-direction: row;margin-top: 20px;justify-content: space-between;margin-bottom: 40px;">
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.cancel.shipping-address') }}
|
||||
</div>
|
||||
@if ($order->shipping_address)
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.cancel.shipping-address') }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->company_name ?? '' }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->shipping_address->company_name ?? '' }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->name }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->shipping_address->name }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->address1 }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->shipping_address->address1 }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->postcode . " " . $order->shipping_address->city }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->shipping_address->postcode . " " . $order->shipping_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->shipping_address->state }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->shipping_address->state }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ core()->country_name($order->shipping_address->country) }}
|
||||
</div>
|
||||
<div>
|
||||
{{ core()->country_name($order->shipping_address->country) }}
|
||||
</div>
|
||||
|
||||
<div>---</div>
|
||||
<div>---</div>
|
||||
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.cancel.contact') }} : {{ $order->shipping_address->phone }}
|
||||
</div>
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.cancel.contact') }} : {{ $order->shipping_address->phone }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px;color: #242424; font-weight: bold">
|
||||
{{ __('shop::app.mail.order.cancel.shipping') }}
|
||||
</div>
|
||||
<div style="font-size: 16px;color: #242424; font-weight: bold">
|
||||
{{ __('shop::app.mail.order.cancel.shipping') }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px;color: #242424;">
|
||||
{{ $order->shipping_title }}
|
||||
<div style="font-size: 16px;color: #242424;">
|
||||
{{ $order->shipping_title }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.cancel.billing-address') }}
|
||||
</div>
|
||||
@if ($order->billing_address)
|
||||
<div style="line-height: 25px;">
|
||||
<div style="font-weight: bold;font-size: 16px;color: #242424;">
|
||||
{{ __('shop::app.mail.order.cancel.billing-address') }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->company_name ?? '' }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->company_name ?? '' }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->address1 }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->address1 }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->postcode . " " . $order->billing_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $order->billing_address->state }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->postcode . " " . $order->billing_address->city }}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ core()->country_name($order->billing_address->country) }}
|
||||
</div>
|
||||
<div>
|
||||
{{ $order->billing_address->state }}
|
||||
</div>
|
||||
|
||||
<div>---</div>
|
||||
<div>
|
||||
{{ core()->country_name($order->billing_address->country) }}
|
||||
</div>
|
||||
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.cancel.contact') }} : {{ $order->billing_address->phone }}
|
||||
</div>
|
||||
<div>---</div>
|
||||
|
||||
<div style="font-size: 16px; color: #242424; font-weight: bold">
|
||||
{{ __('shop::app.mail.order.cancel.payment') }}
|
||||
</div>
|
||||
<div style="margin-bottom: 40px;">
|
||||
{{ __('shop::app.mail.order.cancel.contact') }} : {{ $order->billing_address->phone }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px; color: #242424;">
|
||||
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
|
||||
<div style="font-size: 16px; color: #242424; font-weight: bold">
|
||||
{{ __('shop::app.mail.order.cancel.payment') }}
|
||||
</div>
|
||||
|
||||
<div style="font-size: 16px; color: #242424;">
|
||||
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<div class="section-content">
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
"/js/ui.js": "/js/ui.js?id=e1c749d03739730487d6",
|
||||
"/css/ui.css": "/css/ui.css?id=243871695aaf4bd7cf12"
|
||||
"/js/ui.js": "/js/ui.js?id=28450da875b7d84b30dd",
|
||||
"/css/ui.css": "/css/ui.css?id=dbf1b2df5e3052f61d06"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -128,6 +128,10 @@
|
|||
margin-top: 90px;
|
||||
}
|
||||
|
||||
.m-20 {
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
body {
|
||||
letter-spacing: -0.26px;
|
||||
line-height: 19px;
|
||||
|
|
|
|||
|
|
@ -0,0 +1,55 @@
|
|||
<?php
|
||||
return [
|
||||
'datagrid' => [
|
||||
'actions' => 'Actions',
|
||||
'id' => 'Index columns have value greater than zero only',
|
||||
|
||||
'massaction' => [
|
||||
'mass-delete-confirm' => 'Do you really want to delete these selected :resource?',
|
||||
'mass-update-status' => 'Do you really want to update status of these selected :resource?',
|
||||
'delete' => 'Do you really want to perform this action?',
|
||||
'edit' => 'Do you really want to edit this :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?',
|
||||
],
|
||||
|
||||
'error' => [
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-search-keys-error' => 'Multiple search keys found, please resolve the URL manually',
|
||||
'mapped-keys-error' => 'Mapped key not found. Make sure you have given valid options.',
|
||||
],
|
||||
|
||||
'zero-index' => 'Index columns can have values greater than zero only',
|
||||
'no-records' => 'No Records Found',
|
||||
'filter-fields-missing' => 'Some of the required field is null, please check column, condition and value properly',
|
||||
'filter-exists' => 'Filter value already exists.',
|
||||
'click_on_action' => 'Do you really want to perform this action?',
|
||||
'search' => 'Search Here...',
|
||||
'search-title' => 'Search',
|
||||
'channel' => 'Channel',
|
||||
'locale' => 'Locale',
|
||||
'customer-group' => 'Customer Group',
|
||||
'filter' => 'Filter',
|
||||
'column' => 'Select Column',
|
||||
'condition' => 'Select Condition',
|
||||
'contains' => 'Contains',
|
||||
'ncontains' => 'Does not contains',
|
||||
'equals' => 'Is Equals to',
|
||||
'nequals' => 'Is Not equals to',
|
||||
'greater' => 'Greater than',
|
||||
'less' => 'Less than',
|
||||
'greatere' => 'Greater than equals to',
|
||||
'lesse' => 'Less than equals to',
|
||||
'value' => 'Select Value',
|
||||
'true' => 'True / Active',
|
||||
'false' => 'False / Inactive',
|
||||
'between' => 'Is between',
|
||||
'apply' => 'Apply',
|
||||
'items-per-page' => 'Items Per Page',
|
||||
'value-here' => 'Value here',
|
||||
'numeric-value-here' => 'Numeric Value here',
|
||||
'submit' => 'Submit',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'view' => 'View',
|
||||
],
|
||||
];
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'enter-attribute' => 'Enter :attribute',
|
||||
'select-attribute' => 'Select :attribute',
|
||||
];
|
||||
|
|
@ -0,0 +1,55 @@
|
|||
<?php
|
||||
return [
|
||||
'datagrid' => [
|
||||
'actions' => 'Actions',
|
||||
'id' => 'Index columns have value greater than zero only',
|
||||
|
||||
'massaction' => [
|
||||
'mass-delete-confirm' => 'Do you really want to delete these selected :resource?',
|
||||
'mass-update-status' => 'Do you really want to update status of these selected :resource?',
|
||||
'delete' => 'Do you really want to perform this action?',
|
||||
'edit' => 'Do you really want to edit this :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?',
|
||||
],
|
||||
|
||||
'error' => [
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-search-keys-error' => 'Multiple search keys found, please resolve the URL manually',
|
||||
'mapped-keys-error' => 'Mapped key not found. Make sure you have given valid options.',
|
||||
],
|
||||
|
||||
'zero-index' => 'Index columns can have values greater than zero only',
|
||||
'no-records' => 'No Records Found',
|
||||
'filter-fields-missing' => 'Some of the required field is null, please check column, condition and value properly',
|
||||
'filter-exists' => 'Filter value already exists.',
|
||||
'click_on_action' => 'Do you really want to perform this action?',
|
||||
'search' => 'Search Here...',
|
||||
'search-title' => 'Search',
|
||||
'channel' => 'Channel',
|
||||
'locale' => 'Locale',
|
||||
'customer-group' => 'Customer Group',
|
||||
'filter' => 'Filter',
|
||||
'column' => 'Select Column',
|
||||
'condition' => 'Select Condition',
|
||||
'contains' => 'Contains',
|
||||
'ncontains' => 'Does not contains',
|
||||
'equals' => 'Is Equals to',
|
||||
'nequals' => 'Is Not equals to',
|
||||
'greater' => 'Greater than',
|
||||
'less' => 'Less than',
|
||||
'greatere' => 'Greater than equals to',
|
||||
'lesse' => 'Less than equals to',
|
||||
'value' => 'Select Value',
|
||||
'true' => 'True / Active',
|
||||
'false' => 'False / Inactive',
|
||||
'between' => 'Is between',
|
||||
'apply' => 'Apply',
|
||||
'items-per-page' => 'Items Per Page',
|
||||
'value-here' => 'Value here',
|
||||
'numeric-value-here' => 'Numeric Value here',
|
||||
'submit' => 'Submit',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'view' => 'View',
|
||||
],
|
||||
];
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'enter-attribute' => 'Enter :attribute',
|
||||
'select-attribute' => 'Select :attribute',
|
||||
];
|
||||
|
|
@ -0,0 +1,55 @@
|
|||
<?php
|
||||
return [
|
||||
'datagrid' => [
|
||||
'actions' => 'Actions',
|
||||
'id' => 'Index columns have value greater than zero only',
|
||||
|
||||
'massaction' => [
|
||||
'mass-delete-confirm' => 'Do you really want to delete these selected :resource?',
|
||||
'mass-update-status' => 'Do you really want to update status of these selected :resource?',
|
||||
'delete' => 'Do you really want to perform this action?',
|
||||
'edit' => 'Do you really want to edit this :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?',
|
||||
],
|
||||
|
||||
'error' => [
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-search-keys-error' => 'Multiple search keys found, please resolve the URL manually',
|
||||
'mapped-keys-error' => 'Mapped key not found. Make sure you have given valid options.',
|
||||
],
|
||||
|
||||
'zero-index' => 'Index columns can have values greater than zero only',
|
||||
'no-records' => 'No Records Found',
|
||||
'filter-fields-missing' => 'Some of the required field is null, please check column, condition and value properly',
|
||||
'filter-exists' => 'Filter value already exists.',
|
||||
'click_on_action' => 'Do you really want to perform this action?',
|
||||
'search' => 'Search Here...',
|
||||
'search-title' => 'Search',
|
||||
'channel' => 'Channel',
|
||||
'locale' => 'Locale',
|
||||
'customer-group' => 'Customer Group',
|
||||
'filter' => 'Filter',
|
||||
'column' => 'Select Column',
|
||||
'condition' => 'Select Condition',
|
||||
'contains' => 'Contains',
|
||||
'ncontains' => 'Does not contains',
|
||||
'equals' => 'Is Equals to',
|
||||
'nequals' => 'Is Not equals to',
|
||||
'greater' => 'Greater than',
|
||||
'less' => 'Less than',
|
||||
'greatere' => 'Greater than equals to',
|
||||
'lesse' => 'Less than equals to',
|
||||
'value' => 'Select Value',
|
||||
'true' => 'True / Active',
|
||||
'false' => 'False / Inactive',
|
||||
'between' => 'Is between',
|
||||
'apply' => 'Apply',
|
||||
'items-per-page' => 'Items Per Page',
|
||||
'value-here' => 'Value here',
|
||||
'numeric-value-here' => 'Numeric Value here',
|
||||
'submit' => 'Submit',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'view' => 'View',
|
||||
],
|
||||
];
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'enter-attribute' => 'Enter :attribute',
|
||||
'select-attribute' => 'Select :attribute',
|
||||
];
|
||||
|
|
@ -0,0 +1,55 @@
|
|||
<?php
|
||||
return [
|
||||
'datagrid' => [
|
||||
'actions' => 'Actions',
|
||||
'id' => 'Index columns have value greater than zero only',
|
||||
|
||||
'massaction' => [
|
||||
'mass-delete-confirm' => 'Do you really want to delete these selected :resource?',
|
||||
'mass-update-status' => 'Do you really want to update status of these selected :resource?',
|
||||
'delete' => 'Do you really want to perform this action?',
|
||||
'edit' => 'Do you really want to edit this :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?',
|
||||
],
|
||||
|
||||
'error' => [
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-search-keys-error' => 'Multiple search keys found, please resolve the URL manually',
|
||||
'mapped-keys-error' => 'Mapped key not found. Make sure you have given valid options.',
|
||||
],
|
||||
|
||||
'zero-index' => 'Index columns can have values greater than zero only',
|
||||
'no-records' => 'No Records Found',
|
||||
'filter-fields-missing' => 'Some of the required field is null, please check column, condition and value properly',
|
||||
'filter-exists' => 'Filter value already exists.',
|
||||
'click_on_action' => 'Do you really want to perform this action?',
|
||||
'search' => 'Search Here...',
|
||||
'search-title' => 'Search',
|
||||
'channel' => 'Channel',
|
||||
'locale' => 'Locale',
|
||||
'customer-group' => 'Customer Group',
|
||||
'filter' => 'Filter',
|
||||
'column' => 'Select Column',
|
||||
'condition' => 'Select Condition',
|
||||
'contains' => 'Contains',
|
||||
'ncontains' => 'Does not contains',
|
||||
'equals' => 'Is Equals to',
|
||||
'nequals' => 'Is Not equals to',
|
||||
'greater' => 'Greater than',
|
||||
'less' => 'Less than',
|
||||
'greatere' => 'Greater than equals to',
|
||||
'lesse' => 'Less than equals to',
|
||||
'value' => 'Select Value',
|
||||
'true' => 'True / Active',
|
||||
'false' => 'False / Inactive',
|
||||
'between' => 'Is between',
|
||||
'apply' => 'Apply',
|
||||
'items-per-page' => 'Items Per Page',
|
||||
'value-here' => 'Value here',
|
||||
'numeric-value-here' => 'Numeric Value here',
|
||||
'submit' => 'Submit',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'view' => 'View',
|
||||
],
|
||||
];
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'enter-attribute' => 'Enter :attribute',
|
||||
'select-attribute' => 'Select :attribute',
|
||||
];
|
||||
|
|
@ -0,0 +1,55 @@
|
|||
<?php
|
||||
return [
|
||||
'datagrid' => [
|
||||
'actions' => 'Actions',
|
||||
'id' => 'Index columns have value greater than zero only',
|
||||
|
||||
'massaction' => [
|
||||
'mass-delete-confirm' => 'Do you really want to delete these selected :resource?',
|
||||
'mass-update-status' => 'Do you really want to update status of these selected :resource?',
|
||||
'delete' => 'Do you really want to perform this action?',
|
||||
'edit' => 'Do you really want to edit this :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?',
|
||||
],
|
||||
|
||||
'error' => [
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-search-keys-error' => 'Multiple search keys found, please resolve the URL manually',
|
||||
'mapped-keys-error' => 'Mapped key not found. Make sure you have given valid options.',
|
||||
],
|
||||
|
||||
'zero-index' => 'Index columns can have values greater than zero only',
|
||||
'no-records' => 'No Records Found',
|
||||
'filter-fields-missing' => 'Some of the required field is null, please check column, condition and value properly',
|
||||
'filter-exists' => 'Filter value already exists.',
|
||||
'click_on_action' => 'Do you really want to perform this action?',
|
||||
'search' => 'Search Here...',
|
||||
'search-title' => 'Search',
|
||||
'channel' => 'Channel',
|
||||
'locale' => 'Locale',
|
||||
'customer-group' => 'Customer Group',
|
||||
'filter' => 'Filter',
|
||||
'column' => 'Select Column',
|
||||
'condition' => 'Select Condition',
|
||||
'contains' => 'Contains',
|
||||
'ncontains' => 'Does not contains',
|
||||
'equals' => 'Is Equals to',
|
||||
'nequals' => 'Is Not equals to',
|
||||
'greater' => 'Greater than',
|
||||
'less' => 'Less than',
|
||||
'greatere' => 'Greater than equals to',
|
||||
'lesse' => 'Less than equals to',
|
||||
'value' => 'Select Value',
|
||||
'true' => 'True / Active',
|
||||
'false' => 'False / Inactive',
|
||||
'between' => 'Is between',
|
||||
'apply' => 'Apply',
|
||||
'items-per-page' => 'Items Per Page',
|
||||
'value-here' => 'Value here',
|
||||
'numeric-value-here' => 'Numeric Value here',
|
||||
'submit' => 'Submit',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'view' => 'View',
|
||||
],
|
||||
];
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'enter-attribute' => 'Enter :attribute',
|
||||
'select-attribute' => 'Select :attribute',
|
||||
];
|
||||
|
|
@ -0,0 +1,55 @@
|
|||
<?php
|
||||
return [
|
||||
'datagrid' => [
|
||||
'actions' => 'Actions',
|
||||
'id' => 'Index columns have value greater than zero only',
|
||||
|
||||
'massaction' => [
|
||||
'mass-delete-confirm' => 'Do you really want to delete these selected :resource?',
|
||||
'mass-update-status' => 'Do you really want to update status of these selected :resource?',
|
||||
'delete' => 'Do you really want to perform this action?',
|
||||
'edit' => 'Do you really want to edit this :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?',
|
||||
],
|
||||
|
||||
'error' => [
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-search-keys-error' => 'Multiple search keys found, please resolve the URL manually',
|
||||
'mapped-keys-error' => 'Mapped key not found. Make sure you have given valid options.',
|
||||
],
|
||||
|
||||
'zero-index' => 'Index columns can have values greater than zero only',
|
||||
'no-records' => 'No Records Found',
|
||||
'filter-fields-missing' => 'Some of the required field is null, please check column, condition and value properly',
|
||||
'filter-exists' => 'Filter value already exists.',
|
||||
'click_on_action' => 'Do you really want to perform this action?',
|
||||
'search' => 'Search Here...',
|
||||
'search-title' => 'Search',
|
||||
'channel' => 'Channel',
|
||||
'locale' => 'Locale',
|
||||
'customer-group' => 'Customer Group',
|
||||
'filter' => 'Filter',
|
||||
'column' => 'Select Column',
|
||||
'condition' => 'Select Condition',
|
||||
'contains' => 'Contains',
|
||||
'ncontains' => 'Does not contains',
|
||||
'equals' => 'Is Equals to',
|
||||
'nequals' => 'Is Not equals to',
|
||||
'greater' => 'Greater than',
|
||||
'less' => 'Less than',
|
||||
'greatere' => 'Greater than equals to',
|
||||
'lesse' => 'Less than equals to',
|
||||
'value' => 'Select Value',
|
||||
'true' => 'True / Active',
|
||||
'false' => 'False / Inactive',
|
||||
'between' => 'Is between',
|
||||
'apply' => 'Apply',
|
||||
'items-per-page' => 'Items Per Page',
|
||||
'value-here' => 'Value here',
|
||||
'numeric-value-here' => 'Numeric Value here',
|
||||
'submit' => 'Submit',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'view' => 'View',
|
||||
],
|
||||
];
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'enter-attribute' => 'Enter :attribute',
|
||||
'select-attribute' => 'Select :attribute',
|
||||
];
|
||||
|
|
@ -0,0 +1,55 @@
|
|||
<?php
|
||||
return [
|
||||
'datagrid' => [
|
||||
'actions' => 'Actions',
|
||||
'id' => 'Index columns have value greater than zero only',
|
||||
|
||||
'massaction' => [
|
||||
'mass-delete-confirm' => 'Do you really want to delete these selected :resource?',
|
||||
'mass-update-status' => 'Do you really want to update status of these selected :resource?',
|
||||
'delete' => 'Do you really want to perform this action?',
|
||||
'edit' => 'Do you really want to edit this :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?',
|
||||
],
|
||||
|
||||
'error' => [
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-search-keys-error' => 'Multiple search keys found, please resolve the URL manually',
|
||||
'mapped-keys-error' => 'Mapped key not found. Make sure you have given valid options.',
|
||||
],
|
||||
|
||||
'zero-index' => 'Index columns can have values greater than zero only',
|
||||
'no-records' => 'No Records Found',
|
||||
'filter-fields-missing' => 'Some of the required field is null, please check column, condition and value properly',
|
||||
'filter-exists' => 'Filter value already exists.',
|
||||
'click_on_action' => 'Do you really want to perform this action?',
|
||||
'search' => 'Search Here...',
|
||||
'search-title' => 'Search',
|
||||
'channel' => 'Channel',
|
||||
'locale' => 'Locale',
|
||||
'customer-group' => 'Customer Group',
|
||||
'filter' => 'Filter',
|
||||
'column' => 'Select Column',
|
||||
'condition' => 'Select Condition',
|
||||
'contains' => 'Contains',
|
||||
'ncontains' => 'Does not contains',
|
||||
'equals' => 'Is Equals to',
|
||||
'nequals' => 'Is Not equals to',
|
||||
'greater' => 'Greater than',
|
||||
'less' => 'Less than',
|
||||
'greatere' => 'Greater than equals to',
|
||||
'lesse' => 'Less than equals to',
|
||||
'value' => 'Select Value',
|
||||
'true' => 'True / Active',
|
||||
'false' => 'False / Inactive',
|
||||
'between' => 'Is between',
|
||||
'apply' => 'Apply',
|
||||
'items-per-page' => 'Items Per Page',
|
||||
'value-here' => 'Value here',
|
||||
'numeric-value-here' => 'Numeric Value here',
|
||||
'submit' => 'Submit',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'view' => 'View',
|
||||
],
|
||||
];
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'enter-attribute' => 'Enter :attribute',
|
||||
'select-attribute' => 'Select :attribute',
|
||||
];
|
||||
|
|
@ -28,6 +28,7 @@
|
|||
"@inotom/vue-go-top": "^1.3.0",
|
||||
"accounting": "^0.4.1",
|
||||
"bootstrap-sass": "^3.4.1",
|
||||
"colors": "^1.4.0",
|
||||
"font-awesome": "^4.7.0",
|
||||
"lazysizes": "^5.2.2",
|
||||
"material-icons": "^1.10.6",
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1,14 +1,14 @@
|
|||
{
|
||||
"/js/jquery-ez-plus.js": "/js/jquery-ez-plus.js?id=ba3c7cada62de152fd8f",
|
||||
"/js/velocity-core.js": "/js/velocity-core.js?id=73cc7c3501570ebe9151",
|
||||
"/js/velocity.js": "/js/velocity.js?id=f655ac65cbd1aa549cba",
|
||||
"/js/manifest.js": "/js/manifest.js?id=e069a8f952a02ea0f290",
|
||||
"/js/components.js": "/js/components.js?id=13ebf112e40292178d23",
|
||||
"/css/velocity.css": "/css/velocity.css?id=40a7ba82a414cdc70e19",
|
||||
"/css/velocity-admin.css": "/css/velocity-admin.css?id=b67a82956e53163b5e3f",
|
||||
"/images/icon-calendar.svg": "/images/icon-calendar.svg?id=870d0f733a5837742276",
|
||||
"/images/icon-camera.svg": "/images/icon-camera.svg?id=b2fd2f9e17e1ccee96e2",
|
||||
"/images/icon-crossed.svg": "/images/icon-crossed.svg?id=c72c3c1ef790bd4fd993",
|
||||
"/images/icon-eye.svg": "/images/icon-eye.svg?id=9345f20b862e21aa30c6",
|
||||
"/images/icon-search.svg": "/images/icon-search.svg?id=a5f38a895551b8a015b2"
|
||||
"/js/jquery-ez-plus.js": "/js/jquery-ez-plus.js?id=839a8f4f976c7cb12580c31185296bdb",
|
||||
"/js/velocity-core.js": "/js/velocity-core.js?id=73cc7c3501570ebe9151c72d954bd97d",
|
||||
"/js/velocity.js": "/js/velocity.js?id=05aaa666dbbb42558079ce9c3789d879",
|
||||
"/js/manifest.js": "/js/manifest.js?id=e069a8f952a02ea0f290bcca8fab930e",
|
||||
"/js/components.js": "/js/components.js?id=b00ac32ae4b282dd9757809af3045800",
|
||||
"/css/velocity.css": "/css/velocity.css?id=117d313bc752c5808da32fa24cb52302",
|
||||
"/css/velocity-admin.css": "/css/velocity-admin.css?id=b67a82956e53163b5e3ff45a44f9778f",
|
||||
"/images/icon-calendar.svg": "/images/icon-calendar.svg?id=870d0f733a58377422766f3152e15486",
|
||||
"/images/icon-camera.svg": "/images/icon-camera.svg?id=b2fd2f9e17e1ccee96e29f6c6cec91e8",
|
||||
"/images/icon-crossed.svg": "/images/icon-crossed.svg?id=c72c3c1ef790bd4fd99376bd4ba7bd5b",
|
||||
"/images/icon-eye.svg": "/images/icon-eye.svg?id=9345f20b862e21aa30c675df49d56fd5",
|
||||
"/images/icon-search.svg": "/images/icon-search.svg?id=a5f38a895551b8a015b24952561263f1"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -822,6 +822,7 @@
|
|||
|
||||
button {
|
||||
margin-top: 10px;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -513,17 +513,19 @@
|
|||
<div class="sale-section">
|
||||
<div class="section-content" style="border-bottom: 0">
|
||||
<div class="order-box-container">
|
||||
<div class="box">
|
||||
<div class="box-title">
|
||||
{{ __('shop::app.customer.account.order.view.billing-address') }}
|
||||
</div>
|
||||
@if ($order->billing_address)
|
||||
<div class="box">
|
||||
<div class="box-title">
|
||||
{{ __('shop::app.customer.account.order.view.billing-address') }}
|
||||
</div>
|
||||
|
||||
<div class="box-content">
|
||||
@include ('admin::sales.address', ['address' => $order->billing_address])
|
||||
<div class="box-content">
|
||||
@include ('admin::sales.address', ['address' => $order->billing_address])
|
||||
|
||||
{!! view_render_event('bagisto.shop.customers.account.orders.view.billing-address.after', ['order' => $order]) !!}
|
||||
{!! view_render_event('bagisto.shop.customers.account.orders.view.billing-address.after', ['order' => $order]) !!}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@if ($order->shipping_address)
|
||||
<div class="box">
|
||||
|
|
|
|||
Loading…
Reference in New Issue