All Base Category have also a sub Category
Category
@php
$i = 1;
@endphp
@foreach($category as $cat)
@endforeach
{{---------------------------}}
#ID | Category Name | Category Description | Action |
---|---|---|---|
{{ $i++ }} | {{ $cat->name }} | {!! $cat->description !!} | Edit {!! Form::open(['route'=>['category.destroy',$cat->id],'method'=>'DELETE']) !!} {!! Form::submit('Delete',['class'=>'btn btn-danger pull-right', 'onclick'=>'return confirm("Are You Sure..!");', 'style'=>'margin-top: -35px']) !!} {!! Form::close() !!} |
{{ $category->links() }}