@extends('admin::layouts.master') @section('content-header')

All Categories ({{ $categories->getTotal() }}) · {{ link_to_route('admin.categories.create', 'Add New') }}

@stop @section('content') @foreach ($categories as $category) @endforeach
No Name Slug Description Created At Action
{{ $no }} {{ $category->name }} {{ $category->slug }} {{ $category->description }} {{ $category->created_at }} Edit · @include('admin::partials.modal', ['data' => $category, 'name' => 'categories'])
{{ pagination_links($categories) }}
@stop