@extends('layouts.master') @section('header') @include('layouts.partials.header') @endsection @section('navbar') @include('layouts.partials.nav') @endsection @section('sidebar') @include('layouts.partials.sidebar') @endsection @section('content')

{{__("Products")}}

@include('layouts.partials.flash-message')
@foreach($items as $item) @endforeach
{{__("ID")}} {{__("Index")}} {{__("Image")}} {{__("Title")}} {{__("Category")}} {{__("Weight")}} {{__("Country")}} {{__("Cities")}} {{__("Regions")}} {{__("No. Orders")}} {{__("Cost Of Orders")}} {{__("Last Order Date")}} {{__("Creation Date")}} {{__("Status")}} {{__("Actions")}}
{{$item->id}} {{$item->title}} {{$item->category->name}} {{$item->weight." ".__("KG")}} {{$item->countries_names}} {{$item->cities_names}} {{$item->regions_names}} {{$item->orders_count}}
    @foreach($item->countries_total_orders_cost as $k=>$v)
  • {{$v." - ".$k." ".__("orders")}}
  • @endforeach
{{$item->last_order_date}} {{date("d/m/Y",strtotime($item->created_at))}} @if($item->status==1){{__("Active")}}@else{{__("Inactive")}}@endif
id )}}" class='text-warning' style=''> id )}}" class='text-info mx-2' style=''> @if($item->related_items_count>0)
@csrf
@else
@csrf {{ method_field('DELETE') }}
@endif
@endsection @section('footer') @include('layouts.partials.footer') @endsection @section('scripts') @include('layouts.partials.scripts') @endsection