@extends('layouts.app') @section('content')

Manage Products

Product List

@if(Session::has('danger'))
{{ Session::get('danger') }}
@elseif (Session::has('success'))
{{ Session::get('success') }}
@endif {{-- Add Product box ----- START --}}
Select Product Header:
{{-- horizontal divider --}}
{{-- Add Product box ----- END --}}
@foreach ($products as $item) @endforeach
SR # Product Name Header Actions
{{$i++}} {{$item['product_name']}} Not a Sub-Category!
{{-- EDIT PRODUCT MODAL ----- START --}}
{{-- EDIT PRODUCT MODAL ----- END --}} @include('nims.includes.footer') {{-- Script to Make Flash Message Dissappear After 3 sec --}} {{-- make it a DataTable to get search and pagination --}} {{-- Edit the Product --}} @endsection