@extends('layouts/contentLayoutMaster') @section('title', 'Thumb View') @section('vendor-style') {{-- vendor files --}} @endsection @section('page-style') {{-- Page css files --}} @endsection @section('content') {{-- Data list view starts --}} Actions Delete Archive Print Another Action {{-- dataTable starts --}} Image NAME CATEGORY POPULARITY ORDER STATUS PRICE ACTION @foreach ($products as $product) @if($product["order_status"] === 'delivered') @elseif($product["order_status"] === 'pending') @elseif($product["order_status"] === 'on hold') @elseif($product["order_status"] === 'canceled') @endif {{ $product["name"] }} {{ $product["category"] }} {{ $product["order_status"]}} {{ $product["price"] }} @endforeach {{-- dataTable ends --}} {{-- add new sidebar starts --}} Thumb View Data Name Category Audio Computers Fitness Appliance Order Status Pending Canceled Delivered On Hold Price Upload Image {{-- add new sidebar ends --}} {{-- Data list view end --}} @endsection @section('vendor-script') {{-- vendor js files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection