@extends('admin.masters.base') @section('styles') @stop @section('pagetitle') Products overview @stop @section('crumbs')
  • Product List
  • @stop @section('pagecontents')

    Product Panel

    Add A Product

    @if (sizeof($productlist) == 0)
    Page list is currently empty.
    @else
    @foreach ($productlist as $key => $page) @endforeach
    Product ID Image Product Name Stock Amount Actions
    {{ $page->product_id }} {{ $page->product_name }} {{ $page->stock }} ${{ money_format('%i', $page->amount) }}
    @foreach ($inactiveproductlist as $key => $ia) @endforeach
    Product ID Image Product Name Stock Amount Actions
    {{ $ia->product_id }} {{ $ia->product_name }} {{ $ia->stock }} ${{ money_format('%i', $ia->amount) }}
    {!! $productlist->render() !!}
    @endif
    @stop @section('scripts') @stop