@extends('layouts.admin')
@section('style')
@parent
@endSection
@php
$langs = [];
$headings = [
'txt_no', 'txt_schedule_name', 'txt_status', 'txt_workflow', 'txt_sent',
'txt_conditions', 'txt_last_execute', 'txt_last_updated',
'txt_joiner_selection',
];
foreach ($headings as $heading) {
$langs[$heading] = __('headings.' . $heading);
}
unset($headings);
@endphp
@section('content')
@component('admin.components.tabs')
{{ __('headings.btn_create_follow_up') }}
@component('admin.components.datatable_card', ['id' => 'schedule_table', 'with_delete' => true])
@endcomponent
@endcomponent
@endsection
@section('script')
@parent
@endSection