diff --git a/resources/assets/vue/components/bookings/elements/BillingComponent.vue b/resources/assets/vue/components/bookings/elements/BillingComponent.vue new file mode 100644 index 00000000..0e9263c9 --- /dev/null +++ b/resources/assets/vue/components/bookings/elements/BillingComponent.vue @@ -0,0 +1,106 @@ + + + diff --git a/resources/views/pages/billings.blade.php b/resources/views/pages/billings.blade.php new file mode 100644 index 00000000..2dd8f312 --- /dev/null +++ b/resources/views/pages/billings.blade.php @@ -0,0 +1,131 @@ +@extends('layouts.base_portal') +@section('inner_content') +
+
+ + +
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
Invoice
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
Purchase Order
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
Delivery Order
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
Supplier Delivery Order
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+
+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/partials/header.blade.php b/resources/views/partials/header.blade.php index edd7c858..0f9754ae 100644 --- a/resources/views/partials/header.blade.php +++ b/resources/views/partials/header.blade.php @@ -25,7 +25,12 @@
-
Payments & Billing
+
Payments
+
+
+
+ +
Billings
diff --git a/resources/views/partials/menu.blade.php b/resources/views/partials/menu.blade.php index 40d5ff80..4a8ce344 100644 --- a/resources/views/partials/menu.blade.php +++ b/resources/views/partials/menu.blade.php @@ -61,7 +61,18 @@ style=" fill:#000000;">
-
Payments & Billing
+
Payments
+
+ +
+
+ +
+
+
Billings
diff --git a/routes/web.php b/routes/web.php index 2938bb23..4fe7fdf2 100644 --- a/routes/web.php +++ b/routes/web.php @@ -62,6 +62,10 @@ Route::get('/payments', function () { return view('pages.payments'); })->name('payments'); +Route::get('/billings', function () { + return view('pages.billings'); +})->name('billings'); + Route::get('/currency_orders', function () { return view('pages.currency_orders'); })->name('currency_orders');