diff --git a/README.md b/README.md index 1d44cad..e69de29 100644 --- a/README.md +++ b/README.md @@ -1,34 +0,0 @@ -

-

App Test

-
- - -## Quick Installation - - git clone https://github.com/epeneffendy/antrian-test-app.git - - cd Inventory_Management_System - -### Composer - - composer update - - -### For Environment Variable Create - - cp .env.example .env - - - ### For Migration table in database [Create database name as ```IMS```] - - php artisan migrate - -### Server ON ```url: http://127.0.0.1:8000/``` - - php artisan serve - -## Our valuable teamπŸ‘©β€πŸ’»πŸ‘¨β€πŸ’» : - -

- -

diff --git a/resources/views/Admin/add_customer.blade.php b/resources/views/Admin/add_customer.blade.php deleted file mode 100644 index aa0b33d..0000000 --- a/resources/views/Admin/add_customer.blade.php +++ /dev/null @@ -1,58 +0,0 @@ -@extends('layouts.admin_master') - -@section('content') - -
-
-
-
-
-

Add New Customer

-
-
- @csrf -
-
-
- - -
-
-
-
- - -
-
-
-
- - -
-
- -
-
- - -
-
- -
-
- - -
-
-
- -
-
-
-
-
-
-
-
- -@endsection \ No newline at end of file diff --git a/resources/views/Admin/add_invoice.blade.php b/resources/views/Admin/add_invoice.blade.php deleted file mode 100644 index 572fa90..0000000 --- a/resources/views/Admin/add_invoice.blade.php +++ /dev/null @@ -1,102 +0,0 @@ -@extends('layouts.admin_master') - -@section('content') - -
-
-
-
-
-

Create New Invoice

-
-
- @csrf -
-
-
- - -
-
-
-
- - -
-
-
-
- - -
-
-
-
- - -
-
-
-
- - -
-
-
-
- - -
-
-
-
- - -
-
- -
-
- - -
-
- -
-
- - -
-
- -
-
- - -
-
-
-
- - -
-
- - -
- -
-
-
-
-
-
-
-
- -@endsection \ No newline at end of file diff --git a/resources/views/Admin/add_order.blade.php b/resources/views/Admin/add_order.blade.php deleted file mode 100644 index 2143902..0000000 --- a/resources/views/Admin/add_order.blade.php +++ /dev/null @@ -1,64 +0,0 @@ -@extends('layouts.admin_master') - -@section('content') - -
-
-
-
-
-

Add New Order

-
-
- @csrf -
-
-
- - -
-
-
-
- - -
-
-
-
- - -
-
- -
-
- - -
-
-
-
- - -
-
- - -
- -
-
-
-
-
-
-
-
- -@endsection \ No newline at end of file diff --git a/resources/views/Admin/add_product.blade.php b/resources/views/Admin/add_product.blade.php deleted file mode 100644 index 88bd803..0000000 --- a/resources/views/Admin/add_product.blade.php +++ /dev/null @@ -1,71 +0,0 @@ -@extends('layouts.admin_master') - -@section('content') - -
-
-
-
-
-

Add New Product

-
-
- @csrf -
-
-
- - -
-
-
-
- - -
-
-
-
- - -
-
- -
-
- - -
-
- -
-
- - -
-
-
-
- - -
-
- - -
- -
-
-
-
-
-
-
-
- -@endsection \ No newline at end of file diff --git a/resources/views/Admin/all_customers.blade.php b/resources/views/Admin/all_customers.blade.php deleted file mode 100644 index 9bf5515..0000000 --- a/resources/views/Admin/all_customers.blade.php +++ /dev/null @@ -1,94 +0,0 @@ -@extends('layouts.admin_master') -@section('content') - - - -
-
- - Customers List -
-
-
- - - - - - - - - - - - - @foreach($customers as $row) - - - - - - - - - @endforeach - - -
NameEmailCompanyAddressPhoneAction
{{ $row->name }}{{ $row->email }}{{ $row->company }}{{ $row->address }}{{ $row->phone }} - Edit - -
-
-
-
-@endsection -@section('script') - - - - -@endsection diff --git a/resources/views/Admin/all_invoices.blade.php b/resources/views/Admin/all_invoices.blade.php deleted file mode 100644 index 9dc43a5..0000000 --- a/resources/views/Admin/all_invoices.blade.php +++ /dev/null @@ -1,94 +0,0 @@ -@extends('layouts.admin_master') -@section('content') -
-
- - Invoices List -
-
-
- - - - - - - - - - - - - - - - - - - @foreach($invoices as $row) - - - - - - - - - - - - - @endforeach - - -
Invoice No.Customer NameCustomer EmailCompanyAddressProduct NameQuantityTotal CostDueDate
{{ $row->id }}{{ $row->customer_name }}{{ $row->customer_mail }}{{ $row->company }}{{ $row->address }}{{ $row->product_name }}{{ $row->quantity }}{{ $row->total }}{{ $row->due }}{{ $row->created_at }}
-
-
-
-@endsection -@section('script') - - - -@endsection \ No newline at end of file diff --git a/resources/views/Admin/all_orders.blade.php b/resources/views/Admin/all_orders.blade.php deleted file mode 100644 index f52f9cf..0000000 --- a/resources/views/Admin/all_orders.blade.php +++ /dev/null @@ -1,101 +0,0 @@ -@extends('layouts.admin_master') -@section('content') -
-
- - Orders List -
-
-
- - - - - - - - - - - - - - - @foreach($orders as $row) - - - - - - - - - - @endforeach - - - -
Order IdProduct CodeProduct NameCustomer EmailQuantityStatusAction
{{ $row->id }}{{ $row->product_code }}{{ $row->product_name }}{{ $row->email }}{{ $row->quantity }} - @if($row->order_status=='0') - Pending - @else - Delivered - @endif - - @if($row->order_status=='0') - createInvoice - @else - Invoiced - @endif - -
-
-
-
-@endsection -@section('script') - - - -@endsection \ No newline at end of file diff --git a/resources/views/Admin/all_product.blade.php b/resources/views/Admin/all_product.blade.php deleted file mode 100644 index 3641e2d..0000000 --- a/resources/views/Admin/all_product.blade.php +++ /dev/null @@ -1,96 +0,0 @@ -@extends('layouts.admin_master') -@section('content') -
-
- - Products in Stock -
-
-
- - - - - - - - - - - - - - @foreach($products as $row) - - - - - - @if($row->stock > '0') - - @else - - @endif - - - - - - @endforeach - - -
CodeNameCategoryStockUnit PriceSale PriceAction
{{ $row->product_code }}{{ $row->name }}{{ $row->category }}{{ $row->stock }}stockout{{ $row->unit_price }}{{ $row->sales_unit_price }} - Edit - Delete - Purchase -
-
-
-
-@endsection -@section('script') - - - -@endsection \ No newline at end of file diff --git a/resources/views/Admin/available_products.blade.php b/resources/views/Admin/available_products.blade.php deleted file mode 100644 index 45c1f75..0000000 --- a/resources/views/Admin/available_products.blade.php +++ /dev/null @@ -1,49 +0,0 @@ -@extends('layouts.admin_master') -@section('content') -
-
- - Available Products -
-
-
- - - - - - - - - - - - - - - @foreach($products as $row) - - - - - - @if($row->stock > '0') - - @else - - @endif - - - - - - @endforeach - - -
CodeNameCategoryStockUnit PriceSales Unit PriceAction
{{ $row->product_code }}{{ $row->name }}{{ $row->category }}{{ $row->stock }}Not Available{{ $row->unit_price }}{{ $row->sales_unit_price }} - Order -
-
-
-
-@endsection \ No newline at end of file diff --git a/resources/views/Admin/delivered_orders.blade.php b/resources/views/Admin/delivered_orders.blade.php deleted file mode 100644 index 382a2df..0000000 --- a/resources/views/Admin/delivered_orders.blade.php +++ /dev/null @@ -1,49 +0,0 @@ -@extends('layouts.admin_master') -@section('content') -
-
- - Delivered Products -
-
-
- - - - - - - - - - - - - - @foreach($orders as $row) - - - - - - - - - @endforeach - - - -
Order IdProduct CodeProduct NameCustomer EmailQuantityStatus
{{ $row->id }}{{ $row->product_code }}{{ $row->product_name }}{{ $row->email }}{{ $row->quantity }} - @if($row->order_status=='0') - Pending - @else - Delivered - @endif -
-
-
-
- - - -@endsection \ No newline at end of file diff --git a/resources/views/Admin/edit_customer.blade.php b/resources/views/Admin/edit_customer.blade.php deleted file mode 100644 index 60b9a60..0000000 --- a/resources/views/Admin/edit_customer.blade.php +++ /dev/null @@ -1,58 +0,0 @@ -@extends('layouts.admin_master') - -@section('content') - -
-
-
-
-
-

New Customer

-
-
- @csrf -
-
-
- - -
-
- - -
- -
-
-
-
-
-
- -@endsection \ No newline at end of file diff --git a/resources/views/Admin/invoice_details.blade.php b/resources/views/Admin/invoice_details.blade.php deleted file mode 100644 index e548653..0000000 --- a/resources/views/Admin/invoice_details.blade.php +++ /dev/null @@ -1,206 +0,0 @@ -@extends('layouts.admin_master') - -@section('content') - - - - - A simple, clean, and responsive HTML invoice template - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - -
-

SEP Company Ltd.

-
- Invoice #: {{$data->id }}
- Created: {{$data->created_at }}
-
-
- - - - - - -
- SEP Company Ltd.
- GEC
- Chittagong, Bangladesh -
- {{ $data->company }}
- {{ $data->customer_name }}
- {{ $data->customer_mail }} -
-
Details#
Product Name{{ $data->product_name }}
Product Quantity{{ $data->quantity }}
Unit price{{ $data->price }}
Total price{{ $data->total }}
Payment{{ $data->payment }}
Due{{ $data->due }}
StatusProduct on Delivery
-
- -@section('script') - -@endsection - - - - - -@endsection -@section('script') \ No newline at end of file diff --git a/resources/views/Admin/new_invoice.blade.php b/resources/views/Admin/new_invoice.blade.php deleted file mode 100644 index 9636c16..0000000 --- a/resources/views/Admin/new_invoice.blade.php +++ /dev/null @@ -1,192 +0,0 @@ -@extends('layouts.admin_master') - -@section('content') - -
-
-
-
-
-

Create New Invoice

-
-
- @csrf -
-
-
- - -
-
- -
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
- -
-
- - - -
-
- - -
-
-
-
- - -
-
- - - -
-
- - -
-
- -
-
- - -
-
- -
-
- - -
-
-
-
- - -
-
-
- -
-
-
-
-
-
-
-
- - - -@endsection \ No newline at end of file diff --git a/resources/views/Admin/new_order.blade.php b/resources/views/Admin/new_order.blade.php deleted file mode 100644 index de5840f..0000000 --- a/resources/views/Admin/new_order.blade.php +++ /dev/null @@ -1,130 +0,0 @@ -@extends('layouts.admin_master') - -@section('content') - -
-
-
-
-
-

New Order

-
-
- @csrf -
-
-
- - -
-
- -
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
- - -
-
-
-
- - -
-
- -
-
- - -
-
-
- -
-
-
-
-
-
-
-
- - - -@endsection \ No newline at end of file diff --git a/resources/views/Admin/pending_orders.blade.php b/resources/views/Admin/pending_orders.blade.php deleted file mode 100644 index 162b6a9..0000000 --- a/resources/views/Admin/pending_orders.blade.php +++ /dev/null @@ -1,96 +0,0 @@ -@extends('layouts.admin_master') -@section('content') -
-
- - Pending Orders List -
-
-
- - - - - - - - - - - - - - - @foreach($orders as $row) - - - - - - - - - - @endforeach - - - -
Order IdProduct CodeProduct NameCustomer EmailQuantityStatusAction
{{ $row->id }}{{ $row->product_code }}{{ $row->product_name }}{{ $row->email }}{{ $row->quantity }} - @if($row->order_status=='0') - Pending - @else - Delivered - @endif - - createInvoice -
-
-
-
-@endsection -@section('script') - - - -@endsection \ No newline at end of file diff --git a/resources/views/Admin/purchase_products.blade.php b/resources/views/Admin/purchase_products.blade.php deleted file mode 100644 index 7faac17..0000000 --- a/resources/views/Admin/purchase_products.blade.php +++ /dev/null @@ -1,59 +0,0 @@ -@extends('layouts.admin_master') - -@section('content') - -
-
-
-
-
-

Purchase Existing Product

-
-
- @csrf -
-
-
- - -
-
-
-
- - -
-
-
-
- - -
-
- -
-
- - -
-
- -
-
- - -
-
- -
- -
-
-
-
-
-
-
-
- -@endsection \ No newline at end of file diff --git a/resources/views/Admin/sold_products.blade.php b/resources/views/Admin/sold_products.blade.php deleted file mode 100644 index 4f205a3..0000000 --- a/resources/views/Admin/sold_products.blade.php +++ /dev/null @@ -1,31 +0,0 @@ -@extends('layouts.admin_master') -@section('content') -
-
- - Sold Products -
-
-
- - - - - - - - - - @foreach($products as $row) - - - - - @endforeach - - -
Product NameQuantity
{{ $row->product_name }}{{ $row->count }}
-
-
-
-@endsection \ No newline at end of file diff --git a/resources/views/dashboard.blade.php b/resources/views/dashboard.blade.php index c4fea93..0b9d699 100644 --- a/resources/views/dashboard.blade.php +++ b/resources/views/dashboard.blade.php @@ -8,123 +8,7 @@ -
-
-
-
Stock
- -
-
-
-
-
Sold Products
- -
-
-
-
-
Available Products
- -
-
-
-
-
Pending Orders
- -
-
-
-
-
-
-
- - Area Chart Example -
-
-
-
-
-
-
- - Bar Chart Example -
-
-
-
-
-
-
- - DataTable Example -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NamePositionOfficeAgeStart dateSalary
NamePositionOfficeAgeStart dateSalary
Tiger NixonSystem ArchitectEdinburgh612011/04/25$320,800
Garrett WintersAccountantTokyo632011/07/25$170,750
Ashton CoxJunior Technical AuthorSan Francisco662009/01/12$86,000
-
-
-
+ -@endsection \ No newline at end of file +@endsection diff --git a/resources/views/layouts/admin_master.blade.php b/resources/views/layouts/admin_master.blade.php index 8a5d49d..e3470a7 100644 --- a/resources/views/layouts/admin_master.blade.php +++ b/resources/views/layouts/admin_master.blade.php @@ -6,7 +6,7 @@ Products - InventoryManagementSystem + Gomedis @@ -15,7 +15,7 @@ Products
- + @yield('content')