feat: Implement Cost Calculator module with CRUD operations and DataTables integration

This commit is contained in:
2025-08-14 16:17:13 +05:45
parent 165012ea56
commit 7771d57642
11 changed files with 280 additions and 212 deletions

View File

@@ -3,8 +3,8 @@
<div class="container-fluid">
<x-dashboard.breadcumb :title="$title" />
{{ html()->form('POST')->route('costCalculator.store')->class(['needs-validation'])->attributes(['novalidate', 'enctype' => 'multipart/form-data', 'onkeydown' => "return event.key != 'Enter';"])->open() }}
@include('costCalculator::cost.partials.form')
{{ html()->form('POST')->route('cost.store')->class(['needs-validation'])->attributes(['novalidate', 'enctype' => 'multipart/form-data', 'onkeydown' => "return event.key != 'Enter';"])->open() }}
@include('costcalculator::cost.partials.form')
{{ html()->form()->close() }}
</div>
@endsection