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