@extends('home') @section('content')

List Sub Interest

@foreach ($subIntrests as $key=> $item) @endforeach
Sub Interest Intrest Status Action
{{ $item->interestSubCategoryTitle }} {{ $item->interest->intrestCategoryTitle ?? ''}} @if($item->isActive) Active @else @endif {!! Form::open(['method' => 'DELETE','url' => ['subinterest'.$item->id.'/destroy', $item->interestSubCategoryId],'style'=>'display:inline']) !!} {!! Form::button(' ', ['type' => 'submit','class'=>'btn btn-danger btn-sm']) !!} {!! Form::close() !!}
Sub Interest Interest Status Action
@endsection