@extends('layouts.master') @section('css') @toastr_css @section('title') Idea - Categories @stop @endsection @section('page-header')

Idea - Categories

@endsection @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{--

--}}
@foreach ($categories as $index => $category) @endforeach
# Category Name Date Opration
{{ $index + 1 }} {{ $category->name }} {{ $category->created_at }}
@endsection @section('js') @toastr_js @toastr_render @endsection