@extends("admin.template.layout") @section('header') @stop @section('content')
@if($message = Session::get('success'))
{{ $message }}
@endif @if($message = Session::get('error'))
{{ $message }}
@endif
@if ($list->total() > 0) @foreach ($list as $item) @endforeach @else @endif
# Product Name Action
{{ $i }} {{ $item->name }}
No products found
{!! $list->links('admin.template.pagination') !!}
@stop @section('script') @stop