@extends('backend.layouts.master') @section('title', "Blog Category") @section('css') @endsection @section('content')

Blog Category

{!! Form::open(['id' => 'blog-category-add-form','method'=>'post','class'=>'needs-validation','novalidate'=>'']) !!}
Please enter the category title.
Please enter the category slug.
{!! Form::close() !!}

Category List

@if(!empty($categories)) @foreach($categories as $category) @endforeach @endif
Name Slug Action
{{ ucwords(@$category->name) }} {{ @$category->slug }}
{{csrf_field()}}
@include('backend.blog.category.modal.edit') @endsection @section('js') @endsection