changes in email template for enquiries and form submittion, other all minor error fixed.

This commit is contained in:
2025-08-28 13:11:34 +05:45
parent 086395a0a4
commit 3666b749ea
15 changed files with 3907 additions and 1486 deletions

View File

@@ -10,12 +10,13 @@
@php
$columns = [
[
'title' => 'S.N',
'data' => 'DT_RowIndex',
'name' => 'DT_RowIndex',
'title' => '<input type="checkbox" id="select-all">',
'data' => 'checkbox',
'name' => 'checkbox',
'orderable' => false,
'searchable' => false,
'sortable' => false,
'className' => 'align-middle',
'width' => '1%',
],
['title' => 'Name', 'data' => 'name', 'name' => 'name'],
['title' => 'Email', 'data' => 'email', 'name' => 'email'],
@@ -31,8 +32,23 @@
],
];
@endphp
<x-data-table-script :route="route('enquiry.index')" :reorder="null" :columns="$columns" />
</div>
<div class="card" id="customerList">
<div class="card-body p-2">
{{-- <div class="table-responsive">
{{ $dataTable->table(['class' => 'table table-sm w-100', 'data-is_enrolled' => $is_enrolled], true) }}
</div> --}}
<div class="row mt-3">
<div class="col-md-3">
{{ html()->select('action', [2 => 'Send News Letter', 3 => 'Send Mail'])->placeholder('Bulk Actions')->class('form-select bulk-select') }}
</div>
</div>
</div>
</div>
</div>
</div>
@endsection