From: Hamatoma Date: Thu, 6 Jun 2024 14:28:49 +0000 (+0200) Subject: V 0.4.1 Mandator Account Transaction X-Git-Url: https://gitweb.hamatoma.de/?a=commitdiff_plain;h=211e26e66b55f04469fa133d9d4dddb1f1f477e4;p=gadeku.git V 0.4.1 Mandator Account Transaction - Modul Mandator - Modul Account - Modul Transaction - Modul DateTimeHelper - some *.blade files - view/noun - view/verb --- diff --git a/.gitignore b/.gitignore index fd7abcd..6cfb9ca 100644 --- a/.gitignore +++ b/.gitignore @@ -20,6 +20,5 @@ yarn-error.log .dev.user .lrv.credentials storage/ -vendor/ SwitchRepo.sh project.env diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c11774..ef9017a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# V 0.4.1 Mandator Account Transaction + +## Added +- Modul Mandator +- Modul Account +- Modul Transaction +- Modul DateTimeHelper + +## Deleted: +- some *.blade files +- view/noun +- view/verb # V 0.3.9 Snaketext-Prüfung ## Added diff --git a/app/Helpers/DateTimeHelper.php b/app/Helpers/DateTimeHelper.php new file mode 120000 index 0000000..818a93a --- /dev/null +++ b/app/Helpers/DateTimeHelper.php @@ -0,0 +1 @@ +../../vendor/hamatoma/laraknife/resources/helpers/DateTimeHelper.php \ No newline at end of file diff --git a/app/Helpers/ViewHelperLocal.php b/app/Helpers/ViewHelperLocal.php index 14a95ea..4eaec02 100644 --- a/app/Helpers/ViewHelperLocal.php +++ b/app/Helpers/ViewHelperLocal.php @@ -21,8 +21,10 @@ class ViewHelperLocal * @param string $name the name of the tab info * @param int $indexActive the index (0..N-1) of the tab that should be the active tab * @param int $referenceId used for links + * @param string $options + * @param int $referenceId2 used for other links */ - public static function getNavigationTabInfo(string $name, int $indexActive, int $referenceId = 0, ?string $options = null): ?NavigationTabs + public static function getNavigationTabInfo(string $name, int $indexActive, int $referenceId, ?string $options=null, ?int $referenceId2 = null): ?NavigationTabs { $rc = null; switch ($name) { @@ -32,15 +34,73 @@ class ViewHelperLocal "Documents;/note-index_documents/$referenceId", "Shift;/note-edit_shift/$referenceId", ]; - if (strpos($options, 'task=1302') !== false){ + if (strpos($options, 'task=1302') !== false) { $match = null; - if (preg_match('/ref-page=(\d+)/', $options, $match)){ + if (preg_match('/ref-page=(\d+)/', $options, $match)) { $pageId = $match[1]; array_push($list, "Task;/task-edit_snake/$referenceId/$pageId"); } } $rc = new NavigationTabs($list, $indexActive); break; + case 'user-edit': + $rc = new NavigationTabs([ + "Properties;/user-edit/$referenceId", + "Password;/user-editpassword/$referenceId" + ], $indexActive); + break; + case 'mandator-edit': + $rc = new NavigationTabs([ + 'Mandators;/mandator-index', + "Properties;/mandator-edit/$referenceId", + "Accounts;/account-index/$referenceId" + ], $indexActive); + break; + case 'account-edit': + $rc = new NavigationTabs([ + 'Mandators;/mandator-index', + "Accounts;/account-index/$options", + "Properties;/account-edit/$referenceId", + "Transactions;/transaction-index/$referenceId", + ], $indexActive); + break; + case 'transaction-create': + $rc = new NavigationTabs([ + "Properties;/transaction-edit/$referenceId", + ], $indexActive); + break; + case 'transaction-create-document': + $rc = new NavigationTabs([ + 'Mandators;/mandator-index', + "Accounts;/account-index/$referenceId2", + "Transactions;/transaction-index/$referenceId2", + "Properties;/transaction-edit/$referenceId", + "Responsibility;/transaction-editowner/$referenceId", + "Documents;/transaction-index_documents/$referenceId", + "Document;/transaction-create_document/$referenceId" + ], $indexActive); + break; + case 'transaction-edit-document': + $rc = new NavigationTabs([ + 'Mandators;/mandator-index', + "Accounts;/account-index/$referenceId2", + "Transactions;/transaction-index/$referenceId2", + "Properties;/transaction-edit/$referenceId", + "Responsibility;/transaction-editowner/$referenceId", + "Documents;/transaction-index_documents/$referenceId", + "Document;/transaction-edit_document/$options/$referenceId" + ], $indexActive); + break; + case 'transaction-edit': + $rc = new NavigationTabs([ + 'Mandators;/mandator-index', + "Accounts;/account-index/$referenceId2", + "Transactions;/transaction-index/$referenceId2", + "Properties;/transaction-edit/$referenceId", + "Responsibility;/transaction-editowner/$referenceId", + "Documents;/transaction-index_documents/$referenceId", + ], $indexActive); + break; case 'word-edit': $header = StringHelper::toCapital($options); if (strpos('verb adjective noun', $options) !== false) { diff --git a/app/Http/Controllers/AccountController.php b/app/Http/Controllers/AccountController.php new file mode 120000 index 0000000..5c8c59b --- /dev/null +++ b/app/Http/Controllers/AccountController.php @@ -0,0 +1 @@ +../../../vendor/hamatoma/laraknife/templates/Http/Controllers/AccountController.php \ No newline at end of file diff --git a/app/Http/Controllers/MandatorController.php b/app/Http/Controllers/MandatorController.php new file mode 120000 index 0000000..11b40fe --- /dev/null +++ b/app/Http/Controllers/MandatorController.php @@ -0,0 +1 @@ +../../../vendor/hamatoma/laraknife/templates/Http/Controllers/MandatorController.php \ No newline at end of file diff --git a/app/Http/Controllers/TransactionController.php b/app/Http/Controllers/TransactionController.php new file mode 120000 index 0000000..c227819 --- /dev/null +++ b/app/Http/Controllers/TransactionController.php @@ -0,0 +1 @@ +../../../vendor/hamatoma/laraknife/templates/Http/Controllers/TransactionController.php \ No newline at end of file diff --git a/app/Models/Account.php b/app/Models/Account.php new file mode 120000 index 0000000..4790d87 --- /dev/null +++ b/app/Models/Account.php @@ -0,0 +1 @@ +../../vendor/hamatoma/laraknife/templates/Models/Account.php \ No newline at end of file diff --git a/app/Models/Mandator.php b/app/Models/Mandator.php new file mode 120000 index 0000000..0e06efa --- /dev/null +++ b/app/Models/Mandator.php @@ -0,0 +1 @@ +../../vendor/hamatoma/laraknife/templates/Models/Mandator.php \ No newline at end of file diff --git a/app/Models/Transaction.php b/app/Models/Transaction.php new file mode 120000 index 0000000..4524086 --- /dev/null +++ b/app/Models/Transaction.php @@ -0,0 +1 @@ +../../vendor/hamatoma/laraknife/templates/Models/Transaction.php \ No newline at end of file diff --git a/composer.lock b/composer.lock index 31c3f42..ba1c03f 100644 --- a/composer.lock +++ b/composer.lock @@ -1056,7 +1056,7 @@ "dist": { "type": "path", "url": "../laraknife", - "reference": "6c0b0208768952cd190077fe799e5c1c20f2d761" + "reference": "f593c3b28cae789a0cd9d443282ec3994d37d25a" }, "require-dev": { "phpunit/phpunit": "11.0.x-dev" @@ -1087,16 +1087,16 @@ }, { "name": "laravel/framework", - "version": "v11.7.0", + "version": "v11.10.0", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "e5ac72f513f635f208024aa76b8a04efc1b47f93" + "reference": "99b4255194912044b75ab72329f8c19e6345720e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/e5ac72f513f635f208024aa76b8a04efc1b47f93", - "reference": "e5ac72f513f635f208024aa76b8a04efc1b47f93", + "url": "https://api.github.com/repos/laravel/framework/zipball/99b4255194912044b75ab72329f8c19e6345720e", + "reference": "99b4255194912044b75ab72329f8c19e6345720e", "shasum": "" }, "require": { @@ -1221,7 +1221,7 @@ "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.", "ext-pdo": "Required to use all database features.", "ext-posix": "Required to use all features of the queue worker.", - "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).", + "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).", "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", "filp/whoops": "Required for friendly error pages in development (^2.14.3).", "laravel/tinker": "Required to use the tinker console command (^2.0).", @@ -1288,20 +1288,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2024-05-07T13:41:51+00:00" + "time": "2024-06-04T13:45:55+00:00" }, { "name": "laravel/prompts", - "version": "v0.1.21", + "version": "v0.1.23", "source": { "type": "git", "url": "https://github.com/laravel/prompts.git", - "reference": "23ea808e8a145653e0ab29e30d4385e49f40a920" + "reference": "9bc4df7c699b0452c6b815e64a2d84b6d7f99400" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/prompts/zipball/23ea808e8a145653e0ab29e30d4385e49f40a920", - "reference": "23ea808e8a145653e0ab29e30d4385e49f40a920", + "url": "https://api.github.com/repos/laravel/prompts/zipball/9bc4df7c699b0452c6b815e64a2d84b6d7f99400", + "reference": "9bc4df7c699b0452c6b815e64a2d84b6d7f99400", "shasum": "" }, "require": { @@ -1344,9 +1344,9 @@ "description": "Add beautiful and user-friendly forms to your command-line applications.", "support": { "issues": "https://github.com/laravel/prompts/issues", - "source": "https://github.com/laravel/prompts/tree/v0.1.21" + "source": "https://github.com/laravel/prompts/tree/v0.1.23" }, - "time": "2024-04-30T12:46:16+00:00" + "time": "2024-05-27T13:53:20+00:00" }, { "name": "laravel/serializable-closure", @@ -1476,16 +1476,16 @@ }, { "name": "laravel/ui", - "version": "v4.5.1", + "version": "v4.5.2", "source": { "type": "git", "url": "https://github.com/laravel/ui.git", - "reference": "a3562953123946996a503159199d6742d5534e61" + "reference": "c75396f63268c95b053c8e4814eb70e0875e9628" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/ui/zipball/a3562953123946996a503159199d6742d5534e61", - "reference": "a3562953123946996a503159199d6742d5534e61", + "url": "https://api.github.com/repos/laravel/ui/zipball/c75396f63268c95b053c8e4814eb70e0875e9628", + "reference": "c75396f63268c95b053c8e4814eb70e0875e9628", "shasum": "" }, "require": { @@ -1533,9 +1533,9 @@ "ui" ], "support": { - "source": "https://github.com/laravel/ui/tree/v4.5.1" + "source": "https://github.com/laravel/ui/tree/v4.5.2" }, - "time": "2024-03-21T18:12:29+00:00" + "time": "2024-05-08T18:07:10+00:00" }, { "name": "league/commonmark", @@ -1727,16 +1727,16 @@ }, { "name": "league/flysystem", - "version": "3.27.0", + "version": "3.28.0", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "4729745b1ab737908c7d055148c9a6b3e959832f" + "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/4729745b1ab737908c7d055148c9a6b3e959832f", - "reference": "4729745b1ab737908c7d055148c9a6b3e959832f", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c", + "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c", "shasum": "" }, "require": { @@ -1760,10 +1760,13 @@ "composer/semver": "^3.0", "ext-fileinfo": "*", "ext-ftp": "*", + "ext-mongodb": "^1.3", "ext-zip": "*", "friendsofphp/php-cs-fixer": "^3.5", "google/cloud-storage": "^1.23", + "guzzlehttp/psr7": "^2.6", "microsoft/azure-storage-blob": "^1.1", + "mongodb/mongodb": "^1.2", "phpseclib/phpseclib": "^3.0.36", "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^9.5.11|^10.0", @@ -1801,32 +1804,22 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/3.27.0" + "source": "https://github.com/thephpleague/flysystem/tree/3.28.0" }, - "funding": [ - { - "url": "https://ecologi.com/frankdejonge", - "type": "custom" - }, - { - "url": "https://github.com/frankdejonge", - "type": "github" - } - ], - "time": "2024-04-07T19:17:50+00:00" + "time": "2024-05-22T10:09:12+00:00" }, { "name": "league/flysystem-local", - "version": "3.25.1", + "version": "3.28.0", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem-local.git", - "reference": "61a6a90d6e999e4ddd9ce5adb356de0939060b92" + "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/61a6a90d6e999e4ddd9ce5adb356de0939060b92", - "reference": "61a6a90d6e999e4ddd9ce5adb356de0939060b92", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/13f22ea8be526ea58c2ddff9e158ef7c296e4f40", + "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40", "shasum": "" }, "require": { @@ -1860,19 +1853,9 @@ "local" ], "support": { - "source": "https://github.com/thephpleague/flysystem-local/tree/3.25.1" + "source": "https://github.com/thephpleague/flysystem-local/tree/3.28.0" }, - "funding": [ - { - "url": "https://ecologi.com/frankdejonge", - "type": "custom" - }, - { - "url": "https://github.com/frankdejonge", - "type": "github" - } - ], - "time": "2024-03-15T19:58:44+00:00" + "time": "2024-05-06T20:05:52+00:00" }, { "name": "league/mime-type-detection", @@ -2033,16 +2016,16 @@ }, { "name": "nesbot/carbon", - "version": "3.3.1", + "version": "3.5.0", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "8ff64b92c1b1ec84fcde9f8bb9ff2ca34cb8a77a" + "reference": "415782b7e48223342f1a616c16c45a95b15b2318" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/8ff64b92c1b1ec84fcde9f8bb9ff2ca34cb8a77a", - "reference": "8ff64b92c1b1ec84fcde9f8bb9ff2ca34cb8a77a", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/415782b7e48223342f1a616c16c45a95b15b2318", + "reference": "415782b7e48223342f1a616c16c45a95b15b2318", "shasum": "" }, "require": { @@ -2060,13 +2043,13 @@ "require-dev": { "doctrine/dbal": "^3.6.3 || ^4.0", "doctrine/orm": "^2.15.2 || ^3.0", - "friendsofphp/php-cs-fixer": "^3.52.1", + "friendsofphp/php-cs-fixer": "^3.57.2", "kylekatarnls/multi-tester": "^2.5.3", "ondrejmirtes/better-reflection": "^6.25.0.4", "phpmd/phpmd": "^2.15.0", "phpstan/extension-installer": "^1.3.1", - "phpstan/phpstan": "^1.10.65", - "phpunit/phpunit": "^10.5.15", + "phpstan/phpstan": "^1.11.2", + "phpunit/phpunit": "^10.5.20", "squizlabs/php_codesniffer": "^3.9.0" }, "bin": [ @@ -2135,7 +2118,7 @@ "type": "tidelift" } ], - "time": "2024-05-01T06:54:22+00:00" + "time": "2024-06-03T17:25:54+00:00" }, { "name": "nette/schema", @@ -3306,16 +3289,16 @@ }, { "name": "symfony/clock", - "version": "v7.0.7", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/clock.git", - "reference": "2008671acb4a30b01c453de193cf9c80549ebda6" + "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/clock/zipball/2008671acb4a30b01c453de193cf9c80549ebda6", - "reference": "2008671acb4a30b01c453de193cf9c80549ebda6", + "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7", + "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7", "shasum": "" }, "require": { @@ -3360,7 +3343,7 @@ "time" ], "support": { - "source": "https://github.com/symfony/clock/tree/v7.0.7" + "source": "https://github.com/symfony/clock/tree/v7.1.1" }, "funding": [ { @@ -3376,20 +3359,20 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/console", - "version": "v7.0.7", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "c981e0e9380ce9f146416bde3150c79197ce9986" + "reference": "9b008f2d7b21c74ef4d0c3de6077a642bc55ece3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/c981e0e9380ce9f146416bde3150c79197ce9986", - "reference": "c981e0e9380ce9f146416bde3150c79197ce9986", + "url": "https://api.github.com/repos/symfony/console/zipball/9b008f2d7b21c74ef4d0c3de6077a642bc55ece3", + "reference": "9b008f2d7b21c74ef4d0c3de6077a642bc55ece3", "shasum": "" }, "require": { @@ -3453,7 +3436,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v7.0.7" + "source": "https://github.com/symfony/console/tree/v7.1.1" }, "funding": [ { @@ -3469,20 +3452,20 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/css-selector", - "version": "v7.0.7", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "b08a4ad89e84b29cec285b7b1f781a7ae51cf4bc" + "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/b08a4ad89e84b29cec285b7b1f781a7ae51cf4bc", - "reference": "b08a4ad89e84b29cec285b7b1f781a7ae51cf4bc", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4", + "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4", "shasum": "" }, "require": { @@ -3518,7 +3501,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v7.0.7" + "source": "https://github.com/symfony/css-selector/tree/v7.1.1" }, "funding": [ { @@ -3534,7 +3517,7 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/deprecation-contracts", @@ -3605,16 +3588,16 @@ }, { "name": "symfony/error-handler", - "version": "v7.0.7", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "cf97429887e40480c847bfeb6c3991e1e2c086ab" + "reference": "e9b8bbce0b4f322939332ab7b6b81d8c11da27dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/cf97429887e40480c847bfeb6c3991e1e2c086ab", - "reference": "cf97429887e40480c847bfeb6c3991e1e2c086ab", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/e9b8bbce0b4f322939332ab7b6b81d8c11da27dd", + "reference": "e9b8bbce0b4f322939332ab7b6b81d8c11da27dd", "shasum": "" }, "require": { @@ -3660,7 +3643,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v7.0.7" + "source": "https://github.com/symfony/error-handler/tree/v7.1.1" }, "funding": [ { @@ -3676,20 +3659,20 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v7.0.7", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "db2a7fab994d67d92356bb39c367db115d9d30f9" + "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/db2a7fab994d67d92356bb39c367db115d9d30f9", - "reference": "db2a7fab994d67d92356bb39c367db115d9d30f9", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7", + "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7", "shasum": "" }, "require": { @@ -3740,7 +3723,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v7.0.7" + "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1" }, "funding": [ { @@ -3756,7 +3739,7 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -3836,16 +3819,16 @@ }, { "name": "symfony/finder", - "version": "v7.0.7", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "4d58f0f4fe95a30d7b538d71197135483560b97c" + "reference": "fbb0ba67688b780efbc886c1a0a0948dcf7205d6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/4d58f0f4fe95a30d7b538d71197135483560b97c", - "reference": "4d58f0f4fe95a30d7b538d71197135483560b97c", + "url": "https://api.github.com/repos/symfony/finder/zipball/fbb0ba67688b780efbc886c1a0a0948dcf7205d6", + "reference": "fbb0ba67688b780efbc886c1a0a0948dcf7205d6", "shasum": "" }, "require": { @@ -3880,7 +3863,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v7.0.7" + "source": "https://github.com/symfony/finder/tree/v7.1.1" }, "funding": [ { @@ -3896,20 +3879,20 @@ "type": "tidelift" } ], - "time": "2024-04-28T11:44:19+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/http-foundation", - "version": "v7.0.7", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "0194e064b8bdc29381462f790bab04e1cac8fdc8" + "reference": "74d171d5b6a1d9e4bfee09a41937c17a7536acfa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/0194e064b8bdc29381462f790bab04e1cac8fdc8", - "reference": "0194e064b8bdc29381462f790bab04e1cac8fdc8", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/74d171d5b6a1d9e4bfee09a41937c17a7536acfa", + "reference": "74d171d5b6a1d9e4bfee09a41937c17a7536acfa", "shasum": "" }, "require": { @@ -3957,7 +3940,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v7.0.7" + "source": "https://github.com/symfony/http-foundation/tree/v7.1.1" }, "funding": [ { @@ -3973,25 +3956,26 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/http-kernel", - "version": "v7.0.7", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "e07bb9bd86e7cd8ba2d3d9c618eec9d1bbe06d25" + "reference": "fa8d1c75b5f33b1302afccf81811f93976c6e26f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e07bb9bd86e7cd8ba2d3d9c618eec9d1bbe06d25", - "reference": "e07bb9bd86e7cd8ba2d3d9c618eec9d1bbe06d25", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/fa8d1c75b5f33b1302afccf81811f93976c6e26f", + "reference": "fa8d1c75b5f33b1302afccf81811f93976c6e26f", "shasum": "" }, "require": { "php": ">=8.2", "psr/log": "^1|^2|^3", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/error-handler": "^6.4|^7.0", "symfony/event-dispatcher": "^6.4|^7.0", "symfony/http-foundation": "^6.4|^7.0", @@ -4032,9 +4016,9 @@ "symfony/finder": "^6.4|^7.0", "symfony/http-client-contracts": "^2.5|^3", "symfony/process": "^6.4|^7.0", - "symfony/property-access": "^6.4|^7.0", + "symfony/property-access": "^7.1", "symfony/routing": "^6.4|^7.0", - "symfony/serializer": "^6.4.4|^7.0.4", + "symfony/serializer": "^7.1", "symfony/stopwatch": "^6.4|^7.0", "symfony/translation": "^6.4|^7.0", "symfony/translation-contracts": "^2.5|^3", @@ -4070,7 +4054,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v7.0.7" + "source": "https://github.com/symfony/http-kernel/tree/v7.1.1" }, "funding": [ { @@ -4086,20 +4070,20 @@ "type": "tidelift" } ], - "time": "2024-04-29T12:20:25+00:00" + "time": "2024-06-04T06:52:15+00:00" }, { "name": "symfony/mailer", - "version": "v7.0.7", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/mailer.git", - "reference": "4ff41a7c7998a88cfdc31b5841ef64d9246fc56a" + "reference": "2eaad2e167cae930f25a3d731fec8b2ded5e751e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/4ff41a7c7998a88cfdc31b5841ef64d9246fc56a", - "reference": "4ff41a7c7998a88cfdc31b5841ef64d9246fc56a", + "url": "https://api.github.com/repos/symfony/mailer/zipball/2eaad2e167cae930f25a3d731fec8b2ded5e751e", + "reference": "2eaad2e167cae930f25a3d731fec8b2ded5e751e", "shasum": "" }, "require": { @@ -4150,7 +4134,7 @@ "description": "Helps sending emails", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailer/tree/v7.0.7" + "source": "https://github.com/symfony/mailer/tree/v7.1.1" }, "funding": [ { @@ -4166,20 +4150,20 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/mime", - "version": "v7.0.7", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "3adbf110c306546f6f00337f421d2edca0e8d3c0" + "reference": "21027eaacc1a8a20f5e616c25c3580f5dd3a15df" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/3adbf110c306546f6f00337f421d2edca0e8d3c0", - "reference": "3adbf110c306546f6f00337f421d2edca0e8d3c0", + "url": "https://api.github.com/repos/symfony/mime/zipball/21027eaacc1a8a20f5e616c25c3580f5dd3a15df", + "reference": "21027eaacc1a8a20f5e616c25c3580f5dd3a15df", "shasum": "" }, "require": { @@ -4192,7 +4176,7 @@ "phpdocumentor/reflection-docblock": "<3.2.2", "phpdocumentor/type-resolver": "<1.4.0", "symfony/mailer": "<6.4", - "symfony/serializer": "<6.4" + "symfony/serializer": "<6.4.3|>7.0,<7.0.3" }, "require-dev": { "egulias/email-validator": "^2.1.10|^3.1|^4", @@ -4202,7 +4186,7 @@ "symfony/process": "^6.4|^7.0", "symfony/property-access": "^6.4|^7.0", "symfony/property-info": "^6.4|^7.0", - "symfony/serializer": "^6.4|^7.0" + "symfony/serializer": "^6.4.3|^7.0.3" }, "type": "library", "autoload": { @@ -4234,7 +4218,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v7.0.7" + "source": "https://github.com/symfony/mime/tree/v7.1.1" }, "funding": [ { @@ -4250,7 +4234,7 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-06-04T06:40:14+00:00" }, { "name": "symfony/polyfill-ctype", @@ -4965,16 +4949,16 @@ }, { "name": "symfony/process", - "version": "v7.0.7", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "3839e56b94dd1dbd13235d27504e66baf23faba0" + "reference": "febf90124323a093c7ee06fdb30e765ca3c20028" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/3839e56b94dd1dbd13235d27504e66baf23faba0", - "reference": "3839e56b94dd1dbd13235d27504e66baf23faba0", + "url": "https://api.github.com/repos/symfony/process/zipball/febf90124323a093c7ee06fdb30e765ca3c20028", + "reference": "febf90124323a093c7ee06fdb30e765ca3c20028", "shasum": "" }, "require": { @@ -5006,7 +4990,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v7.0.7" + "source": "https://github.com/symfony/process/tree/v7.1.1" }, "funding": [ { @@ -5022,20 +5006,20 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/routing", - "version": "v7.0.7", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "9f82bf7766ccc9c22ab7aeb9bebb98351483fa5b" + "reference": "60c31bab5c45af7f13091b87deb708830f3c96c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/9f82bf7766ccc9c22ab7aeb9bebb98351483fa5b", - "reference": "9f82bf7766ccc9c22ab7aeb9bebb98351483fa5b", + "url": "https://api.github.com/repos/symfony/routing/zipball/60c31bab5c45af7f13091b87deb708830f3c96c0", + "reference": "60c31bab5c45af7f13091b87deb708830f3c96c0", "shasum": "" }, "require": { @@ -5087,7 +5071,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v7.0.7" + "source": "https://github.com/symfony/routing/tree/v7.1.1" }, "funding": [ { @@ -5103,7 +5087,7 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/service-contracts", @@ -5190,16 +5174,16 @@ }, { "name": "symfony/string", - "version": "v7.0.7", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "e405b5424dc2528e02e31ba26b83a79fd4eb8f63" + "reference": "60bc311c74e0af215101235aa6f471bcbc032df2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/e405b5424dc2528e02e31ba26b83a79fd4eb8f63", - "reference": "e405b5424dc2528e02e31ba26b83a79fd4eb8f63", + "url": "https://api.github.com/repos/symfony/string/zipball/60bc311c74e0af215101235aa6f471bcbc032df2", + "reference": "60bc311c74e0af215101235aa6f471bcbc032df2", "shasum": "" }, "require": { @@ -5213,6 +5197,7 @@ "symfony/translation-contracts": "<2.5" }, "require-dev": { + "symfony/emoji": "^7.1", "symfony/error-handler": "^6.4|^7.0", "symfony/http-client": "^6.4|^7.0", "symfony/intl": "^6.4|^7.0", @@ -5256,7 +5241,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v7.0.7" + "source": "https://github.com/symfony/string/tree/v7.1.1" }, "funding": [ { @@ -5272,20 +5257,20 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-06-04T06:40:14+00:00" }, { "name": "symfony/translation", - "version": "v7.0.7", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "1515e03afaa93e6419aba5d5c9d209159317100b" + "reference": "cf5ae136e124fc7681b34ce9fac9d5b9ae8ceee3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/1515e03afaa93e6419aba5d5c9d209159317100b", - "reference": "1515e03afaa93e6419aba5d5c9d209159317100b", + "url": "https://api.github.com/repos/symfony/translation/zipball/cf5ae136e124fc7681b34ce9fac9d5b9ae8ceee3", + "reference": "cf5ae136e124fc7681b34ce9fac9d5b9ae8ceee3", "shasum": "" }, "require": { @@ -5350,7 +5335,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v7.0.7" + "source": "https://github.com/symfony/translation/tree/v7.1.1" }, "funding": [ { @@ -5366,7 +5351,7 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/translation-contracts", @@ -5448,16 +5433,16 @@ }, { "name": "symfony/uid", - "version": "v7.0.7", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/uid.git", - "reference": "4f3a5d181999e25918586c8369de09e7814e7be2" + "reference": "bb59febeecc81528ff672fad5dab7f06db8c8277" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/uid/zipball/4f3a5d181999e25918586c8369de09e7814e7be2", - "reference": "4f3a5d181999e25918586c8369de09e7814e7be2", + "url": "https://api.github.com/repos/symfony/uid/zipball/bb59febeecc81528ff672fad5dab7f06db8c8277", + "reference": "bb59febeecc81528ff672fad5dab7f06db8c8277", "shasum": "" }, "require": { @@ -5502,7 +5487,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/uid/tree/v7.0.7" + "source": "https://github.com/symfony/uid/tree/v7.1.1" }, "funding": [ { @@ -5518,20 +5503,20 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/var-dumper", - "version": "v7.0.7", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "d1627b66fd87c8b4d90cabe5671c29d575690924" + "reference": "deb2c2b506ff6fdbb340e00b34e9901e1605f293" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/d1627b66fd87c8b4d90cabe5671c29d575690924", - "reference": "d1627b66fd87c8b4d90cabe5671c29d575690924", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/deb2c2b506ff6fdbb340e00b34e9901e1605f293", + "reference": "deb2c2b506ff6fdbb340e00b34e9901e1605f293", "shasum": "" }, "require": { @@ -5585,7 +5570,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v7.0.7" + "source": "https://github.com/symfony/var-dumper/tree/v7.1.1" }, "funding": [ { @@ -5601,7 +5586,7 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", @@ -6061,16 +6046,16 @@ }, { "name": "laravel/pint", - "version": "v1.15.3", + "version": "v1.16.0", "source": { "type": "git", "url": "https://github.com/laravel/pint.git", - "reference": "3600b5d17aff52f6100ea4921849deacbbeb8656" + "reference": "1b3a3dc5bc6a81ff52828ba7277621f1d49d6d98" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/pint/zipball/3600b5d17aff52f6100ea4921849deacbbeb8656", - "reference": "3600b5d17aff52f6100ea4921849deacbbeb8656", + "url": "https://api.github.com/repos/laravel/pint/zipball/1b3a3dc5bc6a81ff52828ba7277621f1d49d6d98", + "reference": "1b3a3dc5bc6a81ff52828ba7277621f1d49d6d98", "shasum": "" }, "require": { @@ -6081,11 +6066,11 @@ "php": "^8.1.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.54.0", - "illuminate/view": "^10.48.8", - "larastan/larastan": "^2.9.5", - "laravel-zero/framework": "^10.3.0", - "mockery/mockery": "^1.6.11", + "friendsofphp/php-cs-fixer": "^3.57.1", + "illuminate/view": "^10.48.10", + "larastan/larastan": "^2.9.6", + "laravel-zero/framework": "^10.4.0", + "mockery/mockery": "^1.6.12", "nunomaduro/termwind": "^1.15.1", "pestphp/pest": "^2.34.7" }, @@ -6123,20 +6108,20 @@ "issues": "https://github.com/laravel/pint/issues", "source": "https://github.com/laravel/pint" }, - "time": "2024-04-30T15:02:26+00:00" + "time": "2024-05-21T18:08:25+00:00" }, { "name": "laravel/sail", - "version": "v1.29.1", + "version": "v1.29.2", "source": { "type": "git", "url": "https://github.com/laravel/sail.git", - "reference": "8be4a31150eab3b46af11a2e7b2c4632eefaad7e" + "reference": "a8e4e749735ba2f091856eafeb3f99db8cd6b621" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sail/zipball/8be4a31150eab3b46af11a2e7b2c4632eefaad7e", - "reference": "8be4a31150eab3b46af11a2e7b2c4632eefaad7e", + "url": "https://api.github.com/repos/laravel/sail/zipball/a8e4e749735ba2f091856eafeb3f99db8cd6b621", + "reference": "a8e4e749735ba2f091856eafeb3f99db8cd6b621", "shasum": "" }, "require": { @@ -6186,7 +6171,7 @@ "issues": "https://github.com/laravel/sail/issues", "source": "https://github.com/laravel/sail" }, - "time": "2024-03-20T20:09:31+00:00" + "time": "2024-05-16T21:39:11+00:00" }, { "name": "mockery/mockery", @@ -7948,16 +7933,16 @@ }, { "name": "spatie/flare-client-php", - "version": "1.5.1", + "version": "1.6.0", "source": { "type": "git", "url": "https://github.com/spatie/flare-client-php.git", - "reference": "e27977d534eefe04c154c6fd8460217024054c05" + "reference": "220a7c8745e9fa427d54099f47147c4b97fe6462" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/e27977d534eefe04c154c6fd8460217024054c05", - "reference": "e27977d534eefe04c154c6fd8460217024054c05", + "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/220a7c8745e9fa427d54099f47147c4b97fe6462", + "reference": "220a7c8745e9fa427d54099f47147c4b97fe6462", "shasum": "" }, "require": { @@ -8005,7 +7990,7 @@ ], "support": { "issues": "https://github.com/spatie/flare-client-php/issues", - "source": "https://github.com/spatie/flare-client-php/tree/1.5.1" + "source": "https://github.com/spatie/flare-client-php/tree/1.6.0" }, "funding": [ { @@ -8013,20 +7998,20 @@ "type": "github" } ], - "time": "2024-05-03T15:43:14+00:00" + "time": "2024-05-22T09:45:39+00:00" }, { "name": "spatie/ignition", - "version": "1.14.1", + "version": "1.14.2", "source": { "type": "git", "url": "https://github.com/spatie/ignition.git", - "reference": "c23cc018c5f423d2f413b99f84655fceb6549811" + "reference": "5e11c11f675bb5251f061491a493e04a1a571532" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/ignition/zipball/c23cc018c5f423d2f413b99f84655fceb6549811", - "reference": "c23cc018c5f423d2f413b99f84655fceb6549811", + "url": "https://api.github.com/repos/spatie/ignition/zipball/5e11c11f675bb5251f061491a493e04a1a571532", + "reference": "5e11c11f675bb5251f061491a493e04a1a571532", "shasum": "" }, "require": { @@ -8096,7 +8081,7 @@ "type": "github" } ], - "time": "2024-05-03T15:56:16+00:00" + "time": "2024-05-29T08:10:20+00:00" }, { "name": "spatie/laravel-ignition", @@ -8192,16 +8177,16 @@ }, { "name": "symfony/yaml", - "version": "v7.0.7", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "0d3916ae69ea28b59d94b60c4f2b50f4e25adb5c" + "reference": "fa34c77015aa6720469db7003567b9f772492bf2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/0d3916ae69ea28b59d94b60c4f2b50f4e25adb5c", - "reference": "0d3916ae69ea28b59d94b60c4f2b50f4e25adb5c", + "url": "https://api.github.com/repos/symfony/yaml/zipball/fa34c77015aa6720469db7003567b9f772492bf2", + "reference": "fa34c77015aa6720469db7003567b9f772492bf2", "shasum": "" }, "require": { @@ -8243,7 +8228,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v7.0.7" + "source": "https://github.com/symfony/yaml/tree/v7.1.1" }, "funding": [ { @@ -8259,7 +8244,7 @@ "type": "tidelift" } ], - "time": "2024-04-28T11:44:19+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "theseer/tokenizer", diff --git a/database/migrations/2024_05_28_174935_create_mandators_table.php b/database/migrations/2024_05_28_174935_create_mandators_table.php new file mode 120000 index 0000000..90ee2d8 --- /dev/null +++ b/database/migrations/2024_05_28_174935_create_mandators_table.php @@ -0,0 +1 @@ +../../vendor/hamatoma/laraknife/templates/database/migrations/2024_05_28_174935_create_mandators_table.php \ No newline at end of file diff --git a/database/migrations/2024_05_28_190658_create_accounts_table.php b/database/migrations/2024_05_28_190658_create_accounts_table.php new file mode 120000 index 0000000..3abd934 --- /dev/null +++ b/database/migrations/2024_05_28_190658_create_accounts_table.php @@ -0,0 +1 @@ +../../vendor/hamatoma/laraknife/templates/database/migrations/2024_05_28_190658_create_accounts_table.php \ No newline at end of file diff --git a/database/migrations/2024_05_28_204959_create_transactions_table.php b/database/migrations/2024_05_28_204959_create_transactions_table.php new file mode 120000 index 0000000..43241a8 --- /dev/null +++ b/database/migrations/2024_05_28_204959_create_transactions_table.php @@ -0,0 +1 @@ +../../vendor/hamatoma/laraknife/templates/database/migrations/2024_05_28_204959_create_transactions_table.php \ No newline at end of file diff --git a/database/seeders/MandatorSeeder.php b/database/seeders/MandatorSeeder.php new file mode 120000 index 0000000..4948877 --- /dev/null +++ b/database/seeders/MandatorSeeder.php @@ -0,0 +1 @@ +../../vendor/hamatoma/laraknife/templates/database/seeders/MandatorSeeder.php \ No newline at end of file diff --git a/database/seeders/TransactionSeeder.php b/database/seeders/TransactionSeeder.php new file mode 120000 index 0000000..6208f7e --- /dev/null +++ b/database/seeders/TransactionSeeder.php @@ -0,0 +1 @@ +../../vendor/hamatoma/laraknife/templates/database/seeders/TransactionSeeder.php \ No newline at end of file diff --git a/missing.seeders b/missing.seeders index 897f4ff..671b11c 100644 --- a/missing.seeders +++ b/missing.seeders @@ -1,3 +1,3 @@ # Enter the module names separated by " ". # Example: MISSING="User Role Menuitem" -MISSING="Chapter SPropertyAudio ModuleGaDeKu Page PageLocal" +MISSING="Chapter SPropertyAudio ModuleGaDeKu Page PageLocal Mandator Account Transaction" diff --git a/public/css/green.css b/public/css/green.css deleted file mode 100644 index 026cfe1..0000000 --- a/public/css/green.css +++ /dev/null @@ -1,159 +0,0 @@ -/* purple colors: head: 143F4E icons: 83163F shadow: 888888 panel: c2b0a8 link: 477085 info: 9D8C84 */ -/* green colors: head: 1C191A icons: 5D8967 shadow: 9D8C84 panel: DDDFE0 link: 8CB094 info: F6C9CA */ -.lkn-text-info {color: #5D8967;} - -/* headlines: */ -h1{ color: #1C191A; border-bottom: solid 0.1rem #1C191A; } -h2{ color: #5D8967; border-bottom: solid 0.1rem #5D8967; } -h3{ color: #8CB094 ; border-bottom: solid 0.1rem #8CB094; } -h4{ color: #F6C9CA ; border-bottom: solid 0.1rem #F6C9CA; } -.lkn-text { - color: black; - background-color: white; - border: 0.15rem solid #1C191A; -} -/* Links */ - -/* chapter headline */ -#main-content h1 { border: none; } -/* top menu */ -#lkn-header { background-color: #1C191A; color: white;} -/* panels: */ -.lkn-text-frame-background{ background-color: #e1d6ad !important } -.lkn-panel, -.lkn-nav-tab-panel, -#main-content li.lkn-nav-item-active, -.lkn-filter, -.lkn-form-table, -.lkn-filter, -.lkn-form-table, -.lkn-header-frame, -.lkn-pagination-block -{ - background-color: #DDDFE0; -} -.lkn-page-item.active .lkn-page-link { - background-color: #e1d6ad; - border-color: #e1d6ad; -} -.lkn-field-error { - color: red; -} -/* overview page */ -a.lnk-overview-cell, -a:visited.lkn-overview-cell, -a:link.lkn-overview-cell, -a:active.lkn-overview-cell { - border: 0.25rem solid #F6C9CA;; - color: #5D8967;; - box-shadow: 0 0 5px 0 #74ab80; -} -.lkn-icon-as-link, -a.lkn-overview-cell, -a:visited.lkn-overview-cell, -a:link.lkn-overview-cell, -a:active.lkn-overview-cell { - background-color: #EEE; - color: #5D8967;; -} -.lkn-overview-cell h2 { - border: none; -} -#main-content .nav-item { - background-color: #EEE; -} -.lkn-text-info {color: #5D8967;} -.lkn-text-info2 {color: #F6C9CA;} -.lkn-text-info3 {color: #1C191A;} -.lkn-text-info4 {color: #8CB094;} -.lkn-filter { - background: #DDDFE0; -} -.lkn-text-error { - color: red; - background-color: yellow; -} -.lkn-text-warning { - color: green; - background-color: yellow; -} -.lkn-text-important { - color: red; -} -.lkn-text-tagged { - background-color: rgba(255, 166, 0, 0.418); -} -.lkn-text-tagged2 { - background-color: yellow; -} -.lkn-header-frame h1, .text-header-frame h2, .text-header-frame h3 { - color: whitesmoke; - background-color: #fdaf40; -} -.lkn-ins { - background-color: lightblue; -} -.lkn-del { - background-color: rgba(255, 166, 0, 0.418); -} -.lkn-button { - background-color: #5D8967 !important; - color: white; - border: 0.1rem solid #1C191A; - /* box-shadow: 0 0 0.3rem 0.3rem #74ab80; */ -} -/* Links */ - -a, a:active, a:link, a:visited, a:any-link { - color: #8CB094; } -a:hover { - color: black; } -a.nav-item, a:active.nav-item, a:link.nav-item, a:visited.nav-item, a:any-link.nav-item { - color: blue; } -a:hover.nav-item { color: black; } -nav a:active, nav a:link, nav a:visited, nav a:any-link { - color: white; -} -nav a:hover { color: rgba(255, 166, 0, 0.418); } -/* Register tabs: */ -.page-link { color: black !important; background-color: #DDDFE0; } -.page-link.active, .active > .page-link { color: white !important; background-color: #8CB094; } -.page-item { color: black; background-color: #DDDFE0; } - -#main-content > div > h1, #main-content > div > h2 { - color: #fdaf40; - background-color: rgba(240, 240, 240, 0.75); -} -#main-content .nav-link { - color: black; -} -#main-content .nav-link-item{ - background-color: #e1d6ad; -} -#main-content .nav-link:hover { - color: white; -} -#main-content .nav-link.lkn-nav-item-active { - color: blue !important; -} -#main-content nav-item.lkn-nav-item-active { - background-color: whitesmoke !important; -} -#main-content .nav-item { - border-bottom-color: black !important; -} - -#lkn-header .nav-link, #lkn-header .nav-item { color: white; font-weight: bolder;} - -#main-content .nav-tabs.nav-link { background-color: #e1d6ad !important; } - -#lkn-btn-logout { - background-color: #5D8967; -} -/* Icons: */ -i.text-primary { color: #8CB094 !important; } - -.lkn-frame-indented { - border: solid 0.1rem #5D8967; -} - diff --git a/public/css/green.css b/public/css/green.css new file mode 120000 index 0000000..45bc9ef --- /dev/null +++ b/public/css/green.css @@ -0,0 +1 @@ +../../vendor/hamatoma/laraknife/resources/css/green.css \ No newline at end of file diff --git a/public/css/purple.css b/public/css/purple.css deleted file mode 100644 index 84d4cbf..0000000 --- a/public/css/purple.css +++ /dev/null @@ -1,163 +0,0 @@ -/* purple colors: head: 143F4E icons: 83163F shadow: 888888 panel: c2b0a8 link: 477085 info: 9D8C84 */ -.lkn-text-info {color: #83163F;} - -/* headlines: */ -h1{ color: #143F4E; border-bottom: solid 0.1rem #143F4E; } -h2{ color: #83163F; border-bottom: solid 0.1rem #83163F; } -h3{ color: #477085 ; border-bottom: solid 0.1rem #477085; } -h4{ color: #9D8C84 ; border-bottom: solid 0.1rem #9D8C84; } -.lkn-text { - color: black; - background-color: white; - border: 0.15rem solid #607375; -} -/* Links */ - -/* chapter headline */ -#main-content h1 { border: none; } -/* top menu */ -#lkn-header { background-color: #143F4E; color: white;} -/* panels: */ -.lkn-text-frame-background{ background-color: #e1d6ad !important } -.lkn-panel, -.lkn-nav-tab-panel, -#main-content li.lkn-nav-item-active, -.lkn-filter, -.lkn-form-table, -.lkn-filter, -.lkn-form-table, -.lkn-header-frame -{ - background-color: #c2b0a8; - border: 0.15rem solid #607375; -} -.lkn-pagination-block -{ - background-color: #c2b0a8; - border: none; -} -.lkn-page-item.active .lkn-page-link { - background-color: #e1d6ad; - border-color: #e1d6ad; -} -.lkn-field-error { - color: red; -} -/* overview page */ -a.lnk-overview-cell, -a:visited.lkn-overview-cell, -a:link.lkn-overview-cell, -a:active.lkn-overview-cell { - border: 0.2rem solid #83163F;; - color: #83163F;; - box-shadow: 0 0 5px 0 #bf5c82; -} -.lkn-icon-as-link, -a.lkn-overview-cell, -a:visited.lkn-overview-cell, -a:link.lkn-overview-cell, -a:active.lkn-overview-cell { - background-color: #EEE; - color: #83163F;; -} -.lkn-overview-cell h2 { - border: none; -} -#main-content .nav-item { - background-color: #EEE; -} -.lkn-text-info {color: orange;} -.lkn-text-info2 {color: blue;} -.lkn-text-info3 {color: green;} -.lkn-text-info4 {color: brown;} -.lkn-filter { - background: #c2b0a8; -} -.lkn-text-error { - color: red; - background-color: yellow; -} -.lkn-text-warning { - color: green; - background-color: yellow; -} -.lkn-text-important { - color: red; -} -.lkn-text-tagged { - background-color: rgba(255, 166, 0, 0.418); -} -.lkn-text-tagged2 { - background-color: yellow; -} -.lkn-header-frame h1, .text-header-frame h2, .text-header-frame h3 { - color: whitesmoke; - background-color: #fdaf40; -} -.lkn-ins { - background-color: lightblue; -} -.lkn-del { - background-color: rgba(255, 166, 0, 0.418); -} -.lkn-button { - background-color: #83163F !important; - color: white; - border: 0.1rem solid #143F4E; - /*box-shadow: 0 0 0.3rem 0.3rem #888888;*/ -} -/* Links */ - -a, a:active, a:link, a:visited, a:any-link { - color: #477085; } -a:hover { - color: black; } -a.nav-item, a:active.nav-item, a:link.nav-item, a:visited.nav-item, a:any-link.nav-item { - color: blue; } -a:hover.nav-item { color: black; } -nav a:active, nav a:link, nav a:visited, nav a:any-link { - color: white; -} -nav a:hover { color: rgba(255, 166, 0, 0.418); } -/* Register tabs: */ -.page-link { color: black !important; background-color: #c2b0a8; } -.page-link.active, .active > .page-link { color: white !important; background-color: #477085; } -.page-item { color: black; background-color: #c2b0a8; } - -#main-content > div > h1, #main-content > div > h2 { - color: #fdaf40; - background-color: rgba(240, 240, 240, 0.75); -} -#main-content .nav-link { - color: black; -} -#main-content .nav-link-item{ - background-color: #e1d6ad; -} -#main-content .nav-link:hover { - color: white; -} -#main-content .nav-link.lkn-nav-item-active { - color: blue !important; -} -#main-content nav-item.lkn-nav-item-active { - background-color: whitesmoke !important; -} -#main-content .nav-item { - border-bottom-color: black !important; -} - -#lkn-header .nav-link, #lkn-header .nav-item { color: white; font-weight: bolder;} - -#main-content .nav-tabs.nav-link { background-color: #e1d6ad !important; } - -#lkn-btn-logout { - background-color: #83163F; -} -/* Icons: */ -i.text-primary { color: #477085 !important; } - -.lkn-frame-indented { - border: solid 0.1rem #83163F; -} -.lkn-border { border: solid 0.15rem #111111;} diff --git a/public/css/purple.css b/public/css/purple.css new file mode 120000 index 0000000..6f94609 --- /dev/null +++ b/public/css/purple.css @@ -0,0 +1 @@ +../../vendor/hamatoma/laraknife/resources/css/purple.css \ No newline at end of file diff --git a/public/css/standard.css b/public/css/standard.css deleted file mode 100644 index b315796..0000000 --- a/public/css/standard.css +++ /dev/null @@ -1,160 +0,0 @@ -/* purple colors: head: 143F4E icons: 83163F shadow: 888888 panel: c2b0a8 link: 477085 info: 9D8C84 */ -/* standard colors: head: 36449E icons: blue shadow: aliceblue panel: aliceblue link: blue info: green */ -.lkn-text-info {color: blue;} - -/* headlines: */ -h1{ color: #36449E; border-bottom: solid 0.1rem #bf5c82; } -h2{ color: blue; border-bottom: solid 0.1rem blue; } -h3{ color: green ; border-bottom: solid 0.1rem green; } -h4{ color: green ; border-bottom: solid 0.1rem green; } -.lkn-text { - color: black; - background-color: white; - border: 0.15rem solid #36449E; -} -/* Links */ - -/* chapter headline */ -#main-content h1 { border: none; color: #bf5c82; } -/* top menu */ -#lkn-header { background-color: #36449E; color: white;} -/* panels: */ -.lkn-text-frame-background{ background-color: #e1d6ad !important } -.lkn-panel, -.lkn-nav-tab-panel, -#main-content li.lkn-nav-item-active, -.lkn-filter, -.lkn-form-table, -.lkn-filter, -.lkn-form-table, -.lkn-header-frame, -.lkn-pagination-block -{ - background-color: aliceblue; -} -.lkn-page-item.active .lkn-page-link { - background-color: #e1d6ad; - border-color: #e1d6ad; -} -.lkn-field-error { - color: red; -} -/* overview page */ -a.lnk-overview-cell, -a:visited.lkn-overview-cell, -a:link.lkn-overview-cell, -a:active.lkn-overview-cell { - border: 0.25rem solid #bf5c82; - color: blue;; - /*box-shadow: 0 0 5px 0 #bf5c82;*/ -} -.lkn-icon-as-link, -a.lkn-overview-cell, -a:visited.lkn-overview-cell, -a:link.lkn-overview-cell, -a:active.lkn-overview-cell { - background-color: #EEE; - color: blue;; -} -.lkn-overview-cell h2 { - color: #bf5c82; - border: none; -} -#main-content .nav-item { - background-color: #EEE; -} -.lkn-text-info {color: blue;} -.lkn-text-info2 {color: #green;} -.lkn-text-info3 {color: #36449E;} -.lkn-text-info4 {color: blue;} -.lkn-filter { - background: aliceblue; -} -.lkn-text-error { - color: red; - background-color: yellow; -} -.lkn-text-warning { - color: green; - background-color: yellow; -} -.lkn-text-important { - color: red; -} -.lkn-text-tagged { - background-color: rgba(255, 166, 0, 0.418); -} -.lkn-text-tagged2 { - background-color: yellow; -} -.lkn-header-frame h1, .text-header-frame h2, .text-header-frame h3 { - color: whitesmoke; - background-color: #fdaf40; -} -.lkn-ins { - background-color: lightblue; -} -.lkn-del { - background-color: rgba(255, 166, 0, 0.418); -} -.lkn-button { - background-color: blue !important; - color: white; - border: 0.1rem solid #36449E; - box-shadow: 0 0 0.3rem 0.3rem aliceblue; -} -/* Links */ - -a, a:active, a:link, a:visited, a:any-link { - color: blue; } -a:hover { - color: black; } -a.nav-item, a:active.nav-item, a:link.nav-item, a:visited.nav-item, a:any-link.nav-item { - color: blue; } -a:hover.nav-item { color: black; } -nav a:active, nav a:link, nav a:visited, nav a:any-link { - color: white; -} -nav a:hover { color: rgba(255, 166, 0, 0.418); } -/* Register tabs: */ -.page-link { color: black !important; background-color: aliceblue; } -.page-link.active, .active > .page-link { color: white !important; background-color: blue; } -.page-item { color: black; background-color: aliceblue; } - -#main-content > div > h1, #main-content > div > h2 { - color: #fdaf40; - background-color: rgba(240, 240, 240, 0.75); -} -#main-content .nav-link { - color: black; -} -#main-content .nav-link-item{ - background-color: #e1d6ad; -} -#main-content .nav-link:hover { - color: white; -} -#main-content .nav-link.lkn-nav-item-active { - color: blue !important; -} -#main-content nav-item.lkn-nav-item-active { - background-color: whitesmoke !important; -} -#main-content .nav-item { - border-bottom-color: black !important; -} - -#lkn-header .nav-link, #lkn-header .nav-item { color: white; font-weight: bolder;} - -#main-content .nav-tabs.nav-link { background-color: #e1d6ad !important; } - -#lkn-btn-logout { - background-color: #bf5c82 !important; -} -/* Icons: */ -i.text-primary { color: blue !important; } - -.lkn-frame-indented { - border: solid 0.1rem blue; -} - diff --git a/public/css/standard.css b/public/css/standard.css new file mode 120000 index 0000000..fe4144d --- /dev/null +++ b/public/css/standard.css @@ -0,0 +1 @@ +../../vendor/hamatoma/laraknife/resources/css/standard.css \ No newline at end of file diff --git a/resources/views/account b/resources/views/account new file mode 120000 index 0000000..f1df536 --- /dev/null +++ b/resources/views/account @@ -0,0 +1 @@ +../../vendor/hamatoma/laraknife/resources/views/account \ No newline at end of file diff --git a/resources/views/create.blade.php b/resources/views/create.blade.php deleted file mode 100644 index 19424ad..0000000 --- a/resources/views/create.blade.php +++ /dev/null @@ -1,11 +0,0 @@ -@extends('layouts.backend') - -@section('content') -
- @csrf - @method('PUT') - - - -
-@endsection diff --git a/resources/views/edit.blade.php b/resources/views/edit.blade.php deleted file mode 100644 index e9d8bca..0000000 --- a/resources/views/edit.blade.php +++ /dev/null @@ -1,10 +0,0 @@ -@extends('layouts.backend') - -@section('content') -
- @csrf - - - -
-@endsection diff --git a/resources/views/index.blade.php b/resources/views/index.blade.php deleted file mode 100644 index a1eb450..0000000 --- a/resources/views/index.blade.php +++ /dev/null @@ -1,28 +0,0 @@ -@extends('layouts.backend') - -@section('content') -
- @csrf - - - - - - - - - - - - -@foreach ($records as $) - - - - -@endforeach - - - -
-@endsection diff --git a/resources/views/mandator b/resources/views/mandator new file mode 120000 index 0000000..3d29dd1 --- /dev/null +++ b/resources/views/mandator @@ -0,0 +1 @@ +../../vendor/hamatoma/laraknife/resources/views/mandator \ No newline at end of file diff --git a/resources/views/noun/create.blade.php b/resources/views/noun/create.blade.php deleted file mode 100644 index 2bb7793..0000000 --- a/resources/views/noun/create.blade.php +++ /dev/null @@ -1,18 +0,0 @@ -@extends('layouts.backend') - -@section('content') -
- @csrf - @method('PUT') - - - - - - -
-@endsection diff --git a/resources/views/noun/edit.blade.php b/resources/views/noun/edit.blade.php deleted file mode 100644 index daa7c0c..0000000 --- a/resources/views/noun/edit.blade.php +++ /dev/null @@ -1,19 +0,0 @@ -@extends('layouts.backend') - -@section('content') -
- @csrf - - - - - - - - -
-@endsection diff --git a/resources/views/noun/index.blade.php b/resources/views/noun/index.blade.php deleted file mode 100644 index fed76f4..0000000 --- a/resources/views/noun/index.blade.php +++ /dev/null @@ -1,40 +0,0 @@ -@extends('layouts.backend') - -@section('content') -
- @csrf - - - - - - - - - - - {{ __('Noun') }} - {{ __('Genus') }} - {{ __('Verified by') }} - {{ __('Owner') }} - - - - - @foreach ($records as $noun) - - - {{ $noun->noun }} - {{ __($noun->genus) }} - {{ $noun->verifiedby }} - {{ $noun->owner }} - - - @endforeach - - - -
-@endsection diff --git a/resources/views/noun/show.blade.php b/resources/views/noun/show.blade.php deleted file mode 100644 index afecf49..0000000 --- a/resources/views/noun/show.blade.php +++ /dev/null @@ -1,15 +0,0 @@ -@extends('layouts.backend') - -@section('content') -
- @csrf - @if($mode === 'delete') - @method('DELETE') - @endif - - - - - -
-@endsection diff --git a/resources/views/show.blade.php b/resources/views/show.blade.php deleted file mode 100644 index f0227f7..0000000 --- a/resources/views/show.blade.php +++ /dev/null @@ -1,13 +0,0 @@ -@extends('layouts.backend') - -@section('content') -
- @csrf - @if($mode === 'delete') - @method('DELETE') - @endif - - - -
-@endsection diff --git a/resources/views/transaction b/resources/views/transaction new file mode 120000 index 0000000..a782401 --- /dev/null +++ b/resources/views/transaction @@ -0,0 +1 @@ +../../vendor/hamatoma/laraknife/resources/views/transaction \ No newline at end of file diff --git a/resources/views/verb/create.blade.php b/resources/views/verb/create.blade.php deleted file mode 100644 index 1954de3..0000000 --- a/resources/views/verb/create.blade.php +++ /dev/null @@ -1,18 +0,0 @@ -@extends('layouts.backend') - -@section('content') -
- @csrf - @method('PUT') - - - - - - -
-@endsection diff --git a/resources/views/verb/edit.blade.php b/resources/views/verb/edit.blade.php deleted file mode 100644 index e330e5d..0000000 --- a/resources/views/verb/edit.blade.php +++ /dev/null @@ -1,47 +0,0 @@ -@extends('layouts.backend') - -@section('content') -
- @csrf - - - - - - - - - - - - - - - - - - - - - - -
-@endsection diff --git a/resources/views/verb/index.blade.php b/resources/views/verb/index.blade.php deleted file mode 100644 index 0a64197..0000000 --- a/resources/views/verb/index.blade.php +++ /dev/null @@ -1,44 +0,0 @@ -@extends('layouts.backend') - -@section('content') -
- @csrf - - - - - - - - - - - {{ __('Verb') }} - {{ __('Imperfect') }} - {{ __('Participle') }} - {{ __('Options') }} - {{ __('Verified by') }} - {{ __('Owner') }} - - - - - @foreach ($records as $verb) - - - {{ $verb->verb }} - {{ $verb->imperfect1s }} - {{ $verb->participle }} - {{ $verb->options }} - {{ $verb->verifiedby }} - {{ $verb->owner }} - - - @endforeach - - - -
-@endsection diff --git a/resources/views/verb/show.blade.php b/resources/views/verb/show.blade.php deleted file mode 100644 index 7893a07..0000000 --- a/resources/views/verb/show.blade.php +++ /dev/null @@ -1,48 +0,0 @@ -@extends('layouts.backend') - -@section('content') -
- @csrf - @if($mode === 'delete') - @method('DELETE') - @endif - - - - - - - - - - - - - - - - - - - - -
-@endsection diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php deleted file mode 100644 index abe98dc..0000000 --- a/resources/views/welcome.blade.php +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - Laravel - - - - - - - - - -
- - -
- - diff --git a/resources/views/word/edit-adjective.blade.php b/resources/views/word/edit-adjective.blade.php index 0c4bc7e..cef00a9 100644 --- a/resources/views/word/edit-adjective.blade.php +++ b/resources/views/word/edit-adjective.blade.php @@ -3,7 +3,7 @@ @section('content')
@csrf - + diff --git a/resources/views/word/edit-noun.blade.php b/resources/views/word/edit-noun.blade.php index 13e548e..8281b2b 100644 --- a/resources/views/word/edit-noun.blade.php +++ b/resources/views/word/edit-noun.blade.php @@ -3,7 +3,7 @@ @section('content') @csrf - + @csrf - + @csrf - +