@extends('admin.layout.main')
@section('content')
@component('components.show-page-content')
@slot('heading')
Sub Application Types
@endslot
@slot('tableHeading')
Sub Application Type |
Application Type |
Status |
Action |
@endslot
@slot('tableBody')
@foreach($subApplicationTypes as $current)
| {{$current->sub_application_type}} |
{{$current->applicationType->full_name}} |
{{$current->active ? 'Active': 'De-Active'}} |
id") }}" class = "btn btn-xs btn-info" data-toggle = "tooltip"
data-placement = "top" title = "Edit this session" > |
@endforeach
@endslot
@endcomponent
{{--@component('components.modal')--}}
{{--@slot('id')--}}
{{--store-sub-application-type-modal--}}
{{--@endslot--}}
{{--@slot('method')--}}
{{--post--}}
{{--@endslot--}}
{{--@slot('url')--}}
{{--admin/sub-application-type/store--}}
{{--@endslot--}}
{{--@slot('title')--}}
{{--Add Sub Application Type--}}
{{--@endslot--}}
{{--@slot('formFields')--}}
{{--@include('admin.sub-application-type.sub-application-type-form')--}}
{{--@endslot--}}
{{--@endcomponent--}}
@endsection
@section('script')
@endsection