Heera/Modules/Billing/resources/views/billingComponent/create.blade.php

19 lines
506 B
PHP
Raw Normal View History

2024-05-16 03:46:08 +00:00
@extends('layouts.app')
@section('content')
<div class="page-content">
<div class="container-fluid">
<!-- start page title -->
@include('layouts.partials.breadcrumb', ['title' => $title])
<!-- end page title -->
{{ html()->form('POST')->route('billingComponent.store')->class(['needs-validation'])->attributes(['novalidate'])->open() }}
@include('billing::billingComponent.partials.action')
{{ html()->form()->close() }}
</div>
@endsection