From c2ddd7e11495b62df0cf0dffd4b908129944ae45 Mon Sep 17 00:00:00 2001 From: edmondlang Date: Wed, 2 Mar 2022 00:06:17 +0800 Subject: [PATCH] billing ui --- .../bookings/elements/BillingComponent.vue | 106 ++++++++++++++ resources/views/pages/billings.blade.php | 131 ++++++++++++++++++ resources/views/partials/header.blade.php | 7 +- resources/views/partials/menu.blade.php | 13 +- routes/web.php | 4 + 5 files changed, 259 insertions(+), 2 deletions(-) create mode 100644 resources/assets/vue/components/bookings/elements/BillingComponent.vue create mode 100644 resources/views/pages/billings.blade.php 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
+
+ +
+
+ +
+
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');