@extends('layouts.backend') @section('extra_css') @endsection @section('content') Add Category @if (count($errors) > 0) @foreach ($errors->all() as $error) × {{ $error }} @endforeach @endif @if (Session::get('message')) × {{ Session::get('message') }} @endif {{ csrf_field() }} Name (Ex: জাতীয়) Slug (small letter Ex: national) Position Create All Categories Id Name Slug Position Action @foreach(\App\Category::all() as $row) {{ $row->id}} {{ $row->name}} {{ $row->slug}} {{ $row->position}} {{ csrf_field() }} @endforeach @endsection @section('extra_js') @endsection