@extends('layouts.admin') @section('styles') @endsection @section('content')
{{ $data['last_month_customers'] }}
{{ __('Last 30 Days') }}
{{ $data['last_month_orders'] }}
{{ __('Last 30 days') }}
{{ $data['completed_orders'] }}
{{ __('All Time') }}
| {{ __('Order Number') }} | {{ __('Order Date') }} | |
|---|---|---|
| {{ $order->order_number }} | {{ date('Y-m-d', strtotime($order->created_at)) }} |
| {{ __('Customer Email') }} | {{ __('Joined') }} |
|---|---|
| {{ $customer->customer_email }} | {{ $customer->created_at }} |
| {{ __('Featured Image') }} | {{ __('Name') }} | {{ __('Category') }} | {{ __('Type') }} | {{ __('Price') }} | |
|---|---|---|---|---|---|
| {{ mb_strlen(strip_tags($product->name), 'utf-8') > 50 ? mb_substr(strip_tags($product->name), 0, 50, 'utf-8') . '...' : strip_tags($product->name) }} | {{ $product->category->name }}
@if (isset($product->subcategory))
{{ $product->subcategory->name }} @endif @if (isset($product->childcategory)) {{ $product->childcategory->name }} @endif |
{{ $product->type }} | {{ $product->showPrice() }} |
| {{ __('Featured Image') }} | {{ __('Name') }} | {{ __('Category') }} | {{ __('Type') }} | {{ __('Price') }} | |
|---|---|---|---|---|---|
| {{ mb_strlen(strip_tags($recent_product->name), 'utf-8') > 50 ? mb_substr(strip_tags($recent_product->name), 0, 50, 'utf-8') . '...' : strip_tags($recent_product->name) }} | {{ $recent_product->category->name }}
@if (isset($recent_product->subcategory))
{{ $recent_product->subcategory->name }} @endif @if (isset($recent_product->childcategory)) {{ $recent_product->childcategory->name }} @endif |
{{ $recent_product->type }} | {{ $recent_product->showPrice() }} |