@foreach($subCategories as $subCategory) @endforeach
Name Category Action
{{ $subCategory->name }} {{ $subCategory->category->name }} {!! Form::open(['route' => ['subCategories.destroy', $subCategory->id], 'method' => 'delete']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure you want to delete')"]) !!}
{!! Form::close() !!}