Tax Samples
11 |Sample forms
12 |├── public
├── favicon.ico
├── robots.txt
├── images
│ ├── product
│ │ ├── user.png
│ │ └── Greg-Emerson-edit-2.jpg
│ └── user
│ │ └── avatar1.png
├── .htaccess
├── js
│ ├── main.js
│ ├── multifield
│ │ ├── Gruntfile.js
│ │ ├── jquery.multifield.min.js
│ │ └── jquery.multifield.js
│ └── plugins
│ │ ├── dataTables.bootstrap.min.js
│ │ └── jquery.vmap.sampledata.js
├── web.config
└── index.php
├── bootstrap
├── cache
│ └── .gitignore
└── app.php
├── storage
├── logs
│ └── .gitignore
├── app
│ ├── public
│ │ └── .gitignore
│ └── .gitignore
└── framework
│ ├── testing
│ └── .gitignore
│ ├── views
│ └── .gitignore
│ ├── cache
│ ├── data
│ │ └── .gitignore
│ └── .gitignore
│ ├── sessions
│ └── .gitignore
│ └── .gitignore
├── database
├── .gitignore
├── seeds
│ ├── DatabaseSeeder.php
│ └── UsersTableSeeder.php
├── migrations
│ ├── 2019_09_25_123326_create_purchases_table.php
│ ├── 2014_10_12_100000_create_password_resets_table.php
│ ├── 2019_09_15_053453_create_taxes_table.php
│ ├── 2019_09_15_055531_create_units_table.php
│ ├── 2019_09_14_134301_create_categories_table.php
│ ├── 2019_09_17_043116_create_product_suppliers_table.php
│ ├── 2019_09_15_061238_create_suppliers_table.php
│ ├── 2019_09_15_065207_create_customers_table.php
│ ├── 2019_09_18_180122_create_invoices_table.php
│ ├── 2014_10_12_000000_create_users_table.php
│ ├── 2019_09_15_101601_create_products_table.php
│ └── 2019_09_24_071816_create_sales_table.php
└── factories
│ └── UserFactory.php
├── saleserp.png
├── .gitattributes
├── app
├── Purchase.php
├── Tax.php
├── Unit.php
├── Category.php
├── Customer.php
├── Supplier.php
├── ProductSale.php
├── Sale.php
├── Invoice.php
├── ProductSupplier.php
├── Http
│ ├── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── CheckForMaintenanceMode.php
│ │ ├── TrimStrings.php
│ │ ├── TrustProxies.php
│ │ ├── Authenticate.php
│ │ ├── VerifyCsrfToken.php
│ │ └── RedirectIfAuthenticated.php
│ ├── Controllers
│ │ ├── Controller.php
│ │ ├── Auth
│ │ │ ├── ForgotPasswordController.php
│ │ │ ├── LoginController.php
│ │ │ ├── ResetPasswordController.php
│ │ │ ├── VerificationController.php
│ │ │ └── RegisterController.php
│ │ ├── HomeController.php
│ │ ├── TaxController.php
│ │ ├── UnitController.php
│ │ ├── CategoryController.php
│ │ ├── SupplierController.php
│ │ └── CustomerController.php
│ └── Kernel.php
├── Providers
│ ├── BroadcastServiceProvider.php
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
├── Product.php
├── Console
│ └── Kernel.php
├── User.php
└── Exceptions
│ └── Handler.php
├── .idea
├── misc.xml
└── modules.xml
├── resources
├── sass
│ ├── app.scss
│ └── _variables.scss
├── views
│ ├── home.blade.php
│ ├── auth
│ │ ├── verify.blade.php
│ │ ├── passwords
│ │ │ ├── email.blade.php
│ │ │ └── reset.blade.php
│ │ ├── login.blade.php
│ │ └── register.blade.php
│ ├── partials
│ │ └── header.blade.php
│ ├── tax
│ │ ├── edit.blade.php
│ │ ├── create.blade.php
│ │ └── index.blade.php
│ ├── unit
│ │ ├── edit.blade.php
│ │ ├── create.blade.php
│ │ └── index.blade.php
│ ├── category
│ │ ├── edit.blade.php
│ │ ├── create.blade.php
│ │ └── index.blade.php
│ ├── welcome.blade.php
│ ├── profile
│ │ ├── edit_profile.blade.php
│ │ └── password.blade.php
│ ├── layouts
│ │ ├── app.blade.php
│ │ └── master.blade.php
│ ├── invoice
│ │ └── show.blade.php
│ ├── purchase
│ │ └── show.blade.php
│ ├── supplier
│ │ └── index.blade.php
│ └── customer
│ │ ├── index.blade.php
│ │ └── create.blade.php
├── lang
│ └── en
│ │ ├── pagination.php
│ │ ├── auth.php
│ │ └── passwords.php
└── js
│ ├── components
│ └── ExampleComponent.vue
│ ├── app.js
│ └── bootstrap.js
├── tests
├── TestCase.php
├── Unit
│ └── ExampleTest.php
├── Feature
│ └── ExampleTest.php
└── CreatesApplication.php
├── .gitignore
├── .styleci.yml
├── .editorconfig
├── routes
├── channels.php
├── api.php
├── console.php
└── web.php
├── webpack.mix.js
├── server.php
├── .env.example
├── readme.md
├── config
├── services.php
├── view.php
├── hashing.php
├── broadcasting.php
├── filesystems.php
├── queue.php
├── logging.php
├── cache.php
└── auth.php
├── package.json
├── phpunit.xml
├── composer.json
└── artisan
/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 | *.sqlite-journal
3 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/storage/framework/testing/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/cache/data/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !data/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/saleserp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AshrafulRasel/SalesERP/HEAD/saleserp.png
--------------------------------------------------------------------------------
/public/images/product/user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AshrafulRasel/SalesERP/HEAD/public/images/product/user.png
--------------------------------------------------------------------------------
/public/images/user/avatar1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AshrafulRasel/SalesERP/HEAD/public/images/user/avatar1.png
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.scss linguist-vendored
4 | *.js linguist-vendored
5 | CHANGELOG.md export-ignore
6 |
--------------------------------------------------------------------------------
/public/images/product/Greg-Emerson-edit-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AshrafulRasel/SalesERP/HEAD/public/images/product/Greg-Emerson-edit-2.jpg
--------------------------------------------------------------------------------
/storage/framework/.gitignore:
--------------------------------------------------------------------------------
1 | config.php
2 | routes.php
3 | schedule-*
4 | compiled.php
5 | services.json
6 | events.scanned.php
7 | routes.scanned.php
8 | down
9 |
--------------------------------------------------------------------------------
/app/Purchase.php:
--------------------------------------------------------------------------------
1 |
2 |
Sample forms
12 |Sample forms
12 |Sample forms
12 |Sample forms
12 |Sample forms
12 |Sample forms
12 |Bootstrap default form components
13 |{{ Auth::user()->fullname }}
27 |Bootstrap default form components
13 |{{ Auth::user()->fullname }}
27 |A Printable Invoice Format
12 || Product | 45 |Qty | 46 |Price | 47 |Amount | 48 |
|---|---|---|---|
| {{$sale->product->name}} | 57 |{{$sale->qty}} | 58 |{{$sale->price}} | 59 |{{$sale->amount}} | 60 | 63 |
| 69 | | 70 | | Total | 71 |{{$total}} | 72 |
A Printable Invoice Format
12 || Product | 45 |Qty | 46 |Price | 47 |Amount | 48 |
|---|---|---|---|
| {{$sale->product->name}} | 57 |{{$sale->qty}} | 58 |{{$sale->price}} | 59 |{{$sale->amount}} | 60 | 63 |
| 69 | | 70 | | Total | 71 |{{$total}} | 72 |
Table to display analytical data effectively
15 |Table to display analytical data effectively
15 |Table to display analytical data effectively
15 |Table to display analytical data effectively
15 |Table to display analytical data effectively
15 |Sample forms
12 |