@extends('layouts.admin')
@php $table_id = 'templates_list' @endphp
@section('script')
@parent
@endSection
@section('style')
@parent
@endSection
@section('content')
@component('admin.components.tabs')
@foreach([
'tpl_search_type'=>[
'label' =>'Message Type:',
'heading'=>'headings.txt_filter_type',
],
'tpl_search_init_type' => [
'label' =>'Initiating Type:',
'heading'=>'headings.txt_filter_init_type',
],
'tpl_search_status'=> [
'label' =>'Status:',
'heading'=>'headings.txt_filter_status',
],
] as $id => $data)
@endforeach
@component('admin.components.datatable_card', ['id' => $table_id, 'with_delete' => true])
@endcomponent
@endcomponent
@endsection