@extends('SuperAdmin.layout.layout') @section('title', 'Products') @section('page-name', 'Products') @section('page-detail', 'All Products Information') @section('pagelink', 'products') @section('body')
{{-- Filter --}}
@if($products->isEmpty())

No Product Added Yet!

@else
@foreach($products as $product) @endforeach
Code Name Number Status Date Action
{{$product->code}} {{$product->name}} {{$product->number}} @if($product->status === '2') Active @elseif($product->status === '1') Inactive @else Pending @endif {{$product->created_at->format('m-d-y')}}
@endif
@endsection @section('custom-scripts') @endsection