@extends('master') @section('content')

{{ __('Dashboard') }}

{{ __('Order Statistics') }} -
{{ $master['pending_order'] }}
{{ __('Pending') }}
{{ $master['complete_order'] }}
{{ __('Completed') }}
{{ $master['cancel_order'] }}
{{ __('Cancel') }}

{{ __('Total Orders') }}

{{ $master['total_order'] }}

{{ $master['users'] }}

{{ __('Customers') }}

{{ $master['organizations'] }}

{{ __('Organizations') }}
{{-- chart --}}

{{ __('Upcoming Event') }}

@foreach ($events as $item) @endforeach
{{ $item->name }}
@if ($item->type == 'online')

{{ __('Online Event') }}

@else

{{ $item->address }}

@endif
{{ $item->people . ' allowed' }} {{ $item->avaliable }} {{ __('Pcs left') }} {{ $item->start_time->format('Y-m-d') }}
{{ carbon\Carbon::now()->format('F') . __(' Event') }}
@if (count($monthEvent) == 0)
{{ __('No events found') }}
@else @foreach ($monthEvent as $item)

{{ $item->start_time->format('d') }}

{{ $item->start_time->format('D') }}

{{ $item->name }}

{{ __('Ticket Sold') }} {{ $item->sold_ticket }}/{{ $item->tickets }}

@endforeach @endif
@endsection