Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

Acelords InvoiceCrater #23

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
6e26c5d
feat: Updated logos, favicons, and colors.
syntaxlexx Dec 26, 2019
18f2a57
feat: merged with v3 of the source
syntaxlexx Feb 1, 2020
3c73bf7
fix: title description
syntaxlexx Feb 1, 2020
3732dba
fix: unresolved conflicts on invoicesController
syntaxlexx Feb 1, 2020
6b5b7c9
feat: merged with source
syntaxlexx Mar 15, 2020
41d21f5
feat: Added option to display due amount in (per) invoice
syntaxlexx Mar 18, 2020
472132d
feat: merged with v3.1.1 of parent fork.
syntaxlexx Jul 16, 2020
ecb2a91
feat: merged with v4 from parent fork. Sanctum, Webpack compression
syntaxlexx Jan 9, 2021
0e54aaf
Merged with parent fork
syntaxlexx Jul 20, 2021
5e528a5
feat: merged with source
syntaxlexx Sep 12, 2021
18ee41c
feat: merged with v 5
syntaxlexx Dec 9, 2021
c46ed1c
feat: merged with source v5.0.1
syntaxlexx Dec 9, 2021
3284ae9
Merge commit '5321871' into incremental_upgrade
syntaxlexx Dec 9, 2021
ad872f4
feat: merged with source v5.0.3
syntaxlexx Dec 9, 2021
67c07e6
Merge commit '5a7b515' into incremental_upgrade
syntaxlexx Dec 9, 2021
240cf05
feat: merged with source v5.0.5
syntaxlexx Dec 9, 2021
e803cd0
feat: merged with source v5.0.5. Updated assets and migrations
syntaxlexx Dec 9, 2021
718bcef
feat: added display_due_amount
syntaxlexx Dec 10, 2021
d390109
feat: gitignore
syntaxlexx Dec 10, 2021
5c92b8c
Merge branch 'v_5_0_5'
syntaxlexx Dec 10, 2021
77319a0
build: removed debugbar
syntaxlexx Dec 10, 2021
f754367
removed dsstore
syntaxlexx Mar 9, 2022
a8d1e21
feat: updated composer dependencies
syntaxlexx Mar 9, 2022
bc0e7d2
feat: fixed login area. updated vite config
syntaxlexx Mar 9, 2022
fa01f02
Merge branch 'master' of github.com:acelords/invoicing-webapp into to…
syntaxlexx Mar 9, 2022
c2caaa7
fix: styling for payment pdf
syntaxlexx Jul 14, 2023
18a8005
storage permissions
Oct 10, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
APP_ENV=production
APP_NAME="AceLords Invoices"
APP_ENV=local
APP_KEY=base64:kgk/4DW1vEVy7aEvet5FPp5un6PIGe/so8H0mvoUtW0=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://crater.test

DB_CONNECTION=mysql
DB_HOST=db
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=crater
DB_USERNAME=crater
DB_PASSWORD="crater"
DB_DATABASE=acelords_invoices
DB_USERNAME=root
DB_PASSWORD=

BROADCAST_DRIVER=log
CACHE_DRIVER=file
Expand Down
10 changes: 8 additions & 2 deletions .env.testing
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
APP_ENV=testing
APP_DEBUG=true
APP_KEY=base64:IdDlpLmYyWA9z4Ruj5st1FSYrhCR7lPOscLGCz2Jf4I=
DB_CONNECTION=sqlite

MAIL_DRIVER=smtp
MAIL_DRIVER=log
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=587
MAIL_USERNAME=ff538f0e1037f4
MAIL_PASSWORD=c04c81145fcb73
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS="[email protected]"
MAIL_FROM_NAME="John Doe"

DB_CONNECTION=mysql
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=test_db
DB_USERNAME=root
DB_PASSWORD=
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,16 @@ Homestead.yaml
.rnd
/.expo
/.vscode
<<<<<<< HEAD
docker-compose.yml
docker-compose.yaml

.DS_Store
public/.DS_Store
public/assets/.DS_Store
public/assets/img/.DS_Store
public/logos/.DS_Store
=======
>>>>>>> 082d5ca
/docker-compose/db/data/
storage/debugbar
1 change: 1 addition & 0 deletions app/Models/Invoice.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ class Invoice extends Model implements HasMedia
'sub_total' => 'integer',
'discount' => 'float',
'discount_val' => 'integer',
'display_due_amount' => 'boolean',
'exchange_rate' => 'float'
];

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@
"barryvdh/laravel-ide-helper": "^2.6",
"beyondcode/laravel-dump-server": "^1.0",
"facade/ignition": "^2.3.6",
"fakerphp/faker": "^1.17",
"friendsofphp/php-cs-fixer": "^3.0",
"fzaninotto/faker": "^1.9.1",
"mockery/mockery": "^1.3.1",
"nunomaduro/collision": "^5.0",
"pestphp/pest": "^1.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-faker": "^1.0",
"pestphp/pest-plugin-laravel": "^1.0",
"pestphp/pest-plugin-parallel": "^0.2.1",
Expand Down
Loading