@extends('admin.layouts.master') @section('css') {{ HTML::style('admin/modules/products/css/module.css') }} @stop @section('page_title')

Order Products

@stop @section('page_subtitle') @stop @section('page_content')

Order Products

@if(isset($categories) && count($categories) > 0)
@foreach ($categories as $category)

{{{ $category->name }}}

 
ID
Name
Created
Last Updated
@if(count($category->products) > 0) @foreach ($category->products as $item)
Order
{{{ $item->id }}}
{{{ $item->name }}}
{{ $item->created_at }}
{{ $item->updated_at }}
@endforeach @else
(Category Empty)
@endif
@endforeach
@endif
@stop @section('js') {{ HTML::script('admin/jscript/jquery-ui.min.js') }} {{ HTML::script('admin/jscript/jquery.mjs.nestedSortable.js') }} {{ HTML::script('admin/modules/products/jscript/module.js') }} @stop