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