Erster Upload
This commit is contained in:
@@ -0,0 +1,13 @@
|
|||||||
|
.git
|
||||||
|
.env
|
||||||
|
node_modules
|
||||||
|
vendor
|
||||||
|
storage/logs
|
||||||
|
storage/framework/cache
|
||||||
|
storage/framework/sessions
|
||||||
|
storage/framework/views
|
||||||
|
public/build
|
||||||
|
bootstrap/cache
|
||||||
|
.DS_Store
|
||||||
|
*.md
|
||||||
|
tests
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
charset = utf-8
|
||||||
|
end_of_line = lf
|
||||||
|
indent_size = 4
|
||||||
|
indent_style = space
|
||||||
|
insert_final_newline = true
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
|
||||||
|
[*.md]
|
||||||
|
trim_trailing_whitespace = false
|
||||||
|
|
||||||
|
[*.{yml,yaml}]
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
[docker-compose.yml]
|
||||||
|
indent_size = 4
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
APP_NAME=SpiceManagementSystem
|
||||||
|
APP_ENV=production
|
||||||
|
APP_KEY=
|
||||||
|
APP_DEBUG=false
|
||||||
|
APP_URL=https://deine-domain.de
|
||||||
|
|
||||||
|
# Caddy / TLS
|
||||||
|
APP_DOMAIN=deine-domain.de
|
||||||
|
CADDY_EMAIL=deine@email.de
|
||||||
|
|
||||||
|
# Datenbank
|
||||||
|
DB_DATABASE=spices
|
||||||
|
DB_USERNAME=spices
|
||||||
|
DB_PASSWORD=sicheres-passwort
|
||||||
|
DB_ROOT_PASSWORD=noch-sichereres-root-passwort
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
APP_NAME=SpiceManagementSystem
|
||||||
|
APP_ENV=local
|
||||||
|
APP_KEY=base64:+R075u6yFvKzKxZs5L7eF70kq9akislpRqu5em25XDs=
|
||||||
|
APP_DEBUG=true
|
||||||
|
APP_URL=http://localhost:8000
|
||||||
|
|
||||||
|
LOG_CHANNEL=stack
|
||||||
|
LOG_LEVEL=debug
|
||||||
|
|
||||||
|
DB_CONNECTION=sqlite
|
||||||
|
|
||||||
|
BROADCAST_DRIVER=log
|
||||||
|
CACHE_DRIVER=file
|
||||||
|
FILESYSTEM_DISK=local
|
||||||
|
QUEUE_CONNECTION=sync
|
||||||
|
SESSION_DRIVER=file
|
||||||
|
SESSION_LIFETIME=120
|
||||||
|
|
||||||
|
MAIL_MAILER=log
|
||||||
|
SHOPIFY_STORE=bluefootedboobyspices.myshopify.com
|
||||||
|
SHOPIFY_ACCESS_TOKEN=
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
* text=auto eol=lf
|
||||||
|
|
||||||
|
*.blade.php diff=html
|
||||||
|
*.css diff=css
|
||||||
|
*.html diff=html
|
||||||
|
*.md diff=markdown
|
||||||
|
*.php diff=php
|
||||||
|
|
||||||
|
/.github export-ignore
|
||||||
|
CHANGELOG.md export-ignore
|
||||||
|
.styleci.yml export-ignore
|
||||||
+23
@@ -0,0 +1,23 @@
|
|||||||
|
/.phpunit.cache
|
||||||
|
/node_modules
|
||||||
|
/public/build
|
||||||
|
/public/hot
|
||||||
|
/public/storage/*
|
||||||
|
/storage/*.key
|
||||||
|
/vendor
|
||||||
|
.env
|
||||||
|
.env.backup
|
||||||
|
.env.production
|
||||||
|
.phpactor.json
|
||||||
|
.phpunit.result.cache
|
||||||
|
Homestead.json
|
||||||
|
Homestead.yaml
|
||||||
|
auth.json
|
||||||
|
npm-debug.log
|
||||||
|
yarn-error.log
|
||||||
|
/.fleet
|
||||||
|
/.idea
|
||||||
|
/.vscode
|
||||||
|
/.zed
|
||||||
|
.DS_Store
|
||||||
|
/database/database.sqlite
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
<IfModule mod_autoindex.c>
|
||||||
|
Options -MultiViews -Indexes
|
||||||
|
CheckSpelling off
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
# Block access to .env files
|
||||||
|
<Files .env>
|
||||||
|
Order allow,deny
|
||||||
|
Deny from all
|
||||||
|
</Files>
|
||||||
|
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
frankenphp
|
||||||
|
# E-Mail für Let's Encrypt (TLS-Zertifikate)
|
||||||
|
email {$CADDY_EMAIL}
|
||||||
|
}
|
||||||
|
|
||||||
|
{$SERVER_NAME} {
|
||||||
|
root * /app/public
|
||||||
|
|
||||||
|
encode zstd br gzip
|
||||||
|
|
||||||
|
# PHP-Requests an FrankenPHP übergeben
|
||||||
|
php_server
|
||||||
|
|
||||||
|
# Logs
|
||||||
|
log {
|
||||||
|
output stderr
|
||||||
|
level WARN
|
||||||
|
}
|
||||||
|
}
|
||||||
+47
@@ -0,0 +1,47 @@
|
|||||||
|
# Stage 1: Frontend-Assets bauen
|
||||||
|
FROM node:22-alpine AS node
|
||||||
|
WORKDIR /app
|
||||||
|
COPY package.json package-lock.json ./
|
||||||
|
RUN npm ci
|
||||||
|
COPY resources/ resources/
|
||||||
|
COPY vite.config.js ./
|
||||||
|
RUN mkdir -p public && npm run build
|
||||||
|
|
||||||
|
# Stage 2: FrankenPHP (Caddy + PHP in einem)
|
||||||
|
FROM dunglas/frankenphp:latest-php8.3-alpine
|
||||||
|
|
||||||
|
# PHP-Extensions installieren (install-php-extensions löst System-Deps automatisch)
|
||||||
|
RUN install-php-extensions \
|
||||||
|
pdo_mysql \
|
||||||
|
mbstring \
|
||||||
|
gd \
|
||||||
|
zip \
|
||||||
|
bcmath \
|
||||||
|
intl \
|
||||||
|
exif \
|
||||||
|
pcntl \
|
||||||
|
opcache
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Composer-Dependencies (erst nur json/lock für besseres Layer-Caching)
|
||||||
|
COPY composer.json composer.lock ./
|
||||||
|
RUN composer install --no-dev --no-scripts --no-autoloader --optimize-autoloader
|
||||||
|
|
||||||
|
# App-Code kopieren
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
# Gebaute Frontend-Assets reinkopieren
|
||||||
|
COPY --from=node /app/public/build public/build/
|
||||||
|
|
||||||
|
# Autoloader finalisieren
|
||||||
|
RUN composer dump-autoload --optimize --no-dev
|
||||||
|
|
||||||
|
# Berechtigungen setzen
|
||||||
|
RUN chown -R www-data:www-data storage bootstrap/cache \
|
||||||
|
&& chmod -R 775 storage bootstrap/cache
|
||||||
|
|
||||||
|
COPY docker/entrypoint.sh /entrypoint.sh
|
||||||
|
RUN chmod +x /entrypoint.sh
|
||||||
|
|
||||||
|
ENTRYPOINT ["/entrypoint.sh"]
|
||||||
@@ -0,0 +1,226 @@
|
|||||||
|
# SpiceManagementSystem
|
||||||
|
Dieses Projekt ermöglicht das Verwalten von Grundzutaten und Gewürzmischungen über ein Web-Panel.
|
||||||
|
Um die lokale Entwicklungsumgebung zu starten, müssen zunächst alle Abhängigkeiten per composer install nachinstalliert werden.
|
||||||
|
|
||||||
|
Ist das geschehehn, muss zudem MariaDB installiert werden.
|
||||||
|
|
||||||
|
Anschließend muss die Datenbank migriert werden - siehe Datenbankstruktur.
|
||||||
|
|
||||||
|
Um den lokalen Entwicklungsserver zu starten folgendes eingeben:
|
||||||
|
|
||||||
|
````
|
||||||
|
php artisan serve
|
||||||
|
````
|
||||||
|
|
||||||
|
## Vision
|
||||||
|
Dashboard:
|
||||||
|
- Füllstandsanzeigen (Rohstoffe)
|
||||||
|
- Produkte im Lager (Inventar)
|
||||||
|
- Produkt Sales in Zeitspanne (Todo: Warenausgang DB Tabelle)
|
||||||
|
|
||||||
|
**FOKUS: Warenwirtschaft (Lager, etc.)**
|
||||||
|
|
||||||
|
Todo:
|
||||||
|
- [x] DB Schema abändern, sodass alle Änderungen an einem Produkt gespeichert werden und als Produkthistorie abgerufen werden können.
|
||||||
|
- [x] Recipes funktionsfähig machen (Prozentual?)
|
||||||
|
- [x] Garbage collector Produktbilder
|
||||||
|
- [x] Produktgröße und -preise kombinieren
|
||||||
|
- [x] Inventar (Unique items in inventar tabelle mit "ist noch da?" flag)
|
||||||
|
- [x] Bei Inventar anlegen automatisch füllstände der rohstoffe je prozent im rezept und verpackungsgröße anpassen
|
||||||
|
- [x] Warenausgang (Produktverkauf anlegen)
|
||||||
|
- [ ] Dashboard machen (s.o.)
|
||||||
|
- [x] Frontend schöner machen (Umsortieren der Sidebar Elemente, etc.)
|
||||||
|
- [x] Continious Deployment
|
||||||
|
|
||||||
|
## Cronjobs
|
||||||
|
Den folgenden Cronjob auf dem Server anlegen, um die Laravel jobs auszuführen:
|
||||||
|
|
||||||
|
`0 4 * * * /usr/bin/php8.3 /var/www/html/your_laravel_app/artisan uploads:cron > /tmp/cron_log.txt`
|
||||||
|
|
||||||
|
## Datenbankstruktur
|
||||||
|
Um die Tabellen in Filament anzulegen, folgenden Befehl ausführen:
|
||||||
|
|
||||||
|
````
|
||||||
|
php artisan migrate
|
||||||
|
`````
|
||||||
|
bzw. im DEV-Mode wenn grundstäzlich geändert wird zu erneuten migrieren und Migrations-Cache leeren:
|
||||||
|
|
||||||
|
`````
|
||||||
|
php artisan migrate:refresh
|
||||||
|
`````
|
||||||
|
|
||||||
|
````
|
||||||
|
Table supplier {
|
||||||
|
id int [primary key]
|
||||||
|
name varchar [not null]
|
||||||
|
}
|
||||||
|
|
||||||
|
Table spices_suppliers { // delivery (i just try to use naming convetions)
|
||||||
|
id int [primary key]
|
||||||
|
spice_id int [ref: > spices.id]
|
||||||
|
supplier_id int [ref: > supplier.id]
|
||||||
|
amount decimal(10,2)
|
||||||
|
}
|
||||||
|
Table recipes {
|
||||||
|
id int [pk, increment]
|
||||||
|
name varchar(255) [not null]
|
||||||
|
description text
|
||||||
|
}
|
||||||
|
|
||||||
|
Table spices {
|
||||||
|
id int [pk, increment]
|
||||||
|
name varchar(255) [not null]
|
||||||
|
amount decimal(10,2)
|
||||||
|
unit text
|
||||||
|
}
|
||||||
|
|
||||||
|
Table recipes_spices { // meta for every ingredient column of a spice
|
||||||
|
spice_id int [ref: > spices.id]
|
||||||
|
recipe_id int [ref: > recipes.id]
|
||||||
|
|
||||||
|
amount_in_percent decimal(4,2) [not null]
|
||||||
|
|
||||||
|
indexes {
|
||||||
|
(recipe_id, spice_id) [pk]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Table packings {
|
||||||
|
id inbt [pk, increment]
|
||||||
|
name varchar(255)
|
||||||
|
size decimal(10,2)
|
||||||
|
}
|
||||||
|
|
||||||
|
Table products {
|
||||||
|
id int [pk, increment]
|
||||||
|
title text
|
||||||
|
images json
|
||||||
|
description text
|
||||||
|
package_content text
|
||||||
|
package_id int [ref: > packings.id]
|
||||||
|
recipe_id int [ref: > recipes.id]
|
||||||
|
}
|
||||||
|
|
||||||
|
Table products_sizes {
|
||||||
|
id int [pk, increment]
|
||||||
|
gtin int
|
||||||
|
description text
|
||||||
|
product_id int [ref: > products.id]
|
||||||
|
packing_id int [ref: > packings.id]
|
||||||
|
price float
|
||||||
|
}
|
||||||
|
|
||||||
|
Table products_inventory {
|
||||||
|
id int [pk, increment]
|
||||||
|
product_id int [ref: > products.id]
|
||||||
|
size_id int [ref: > products_sizes.id]
|
||||||
|
out_at timestamp
|
||||||
|
}
|
||||||
|
|
||||||
|
`````
|
||||||
|
|
||||||
|
## IONOS-Shared Webhosting
|
||||||
|
### Variablen für GH Action
|
||||||
|
Datenbank:
|
||||||
|
- DB_DATABASENAME
|
||||||
|
- DB_DATABASEUSER
|
||||||
|
- DB_HOSTNAME
|
||||||
|
MariaDB Version 10.11., Port 3306
|
||||||
|
|
||||||
|
SFTP:
|
||||||
|
- SFTP_HOSTNAME
|
||||||
|
- SFTP_USER
|
||||||
|
|
||||||
|
Domain: https://sms.bluefooted-booby-spices.com/,
|
||||||
|
Short-Domain sms.spices.blue, PHP Version 8.3
|
||||||
|
Um die Applikation auf Ionos Shared Webhosting zu hosten, muss die .htaccess-Datei so aussehen:
|
||||||
|
|
||||||
|
`````
|
||||||
|
<IfModule mod_rewrite.c>
|
||||||
|
<IfModule mod_negotiation.c>
|
||||||
|
Options -MultiViews
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
RewriteEngine On
|
||||||
|
RewriteBase /
|
||||||
|
|
||||||
|
RewriteCond %{HTTP:Authorization} ^(.*)
|
||||||
|
RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]
|
||||||
|
|
||||||
|
# Redirect Trailing Slashes...
|
||||||
|
RewriteRule ^(.*)/$ /$1 [L,R=301]
|
||||||
|
|
||||||
|
# Handle Front Controller...
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||||||
|
RewriteRule ^ /index.php [L]
|
||||||
|
</IfModule>
|
||||||
|
`````
|
||||||
|
|
||||||
|
built with
|
||||||
|
<p align="center"><a href="https://laravel.com" target="_blank"><img src="https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg" width="400" alt="Laravel Logo"></a></p>
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<a href="https://github.com/laravel/framework/actions"><img src="https://github.com/laravel/framework/workflows/tests/badge.svg" alt="Build Status"></a>
|
||||||
|
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/dt/laravel/framework" alt="Total Downloads"></a>
|
||||||
|
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/v/laravel/framework" alt="Latest Stable Version"></a>
|
||||||
|
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/l/laravel/framework" alt="License"></a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
## About Laravel
|
||||||
|
|
||||||
|
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
|
||||||
|
|
||||||
|
- [Simple, fast routing engine](https://laravel.com/docs/routing).
|
||||||
|
- [Powerful dependency injection container](https://laravel.com/docs/container).
|
||||||
|
- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
|
||||||
|
- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
|
||||||
|
- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
|
||||||
|
- [Robust background job processing](https://laravel.com/docs/queues).
|
||||||
|
- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).
|
||||||
|
|
||||||
|
Laravel is accessible, powerful, and provides tools required for large, robust applications.
|
||||||
|
|
||||||
|
## Learning Laravel
|
||||||
|
|
||||||
|
Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.
|
||||||
|
|
||||||
|
You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch.
|
||||||
|
|
||||||
|
If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
|
||||||
|
|
||||||
|
## Laravel Sponsors
|
||||||
|
|
||||||
|
We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the [Laravel Partners program](https://partners.laravel.com).
|
||||||
|
|
||||||
|
### Premium Partners
|
||||||
|
|
||||||
|
- **[Vehikl](https://vehikl.com/)**
|
||||||
|
- **[Tighten Co.](https://tighten.co)**
|
||||||
|
- **[WebReinvent](https://webreinvent.com/)**
|
||||||
|
- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**
|
||||||
|
- **[64 Robots](https://64robots.com)**
|
||||||
|
- **[Curotec](https://www.curotec.com/services/technologies/laravel/)**
|
||||||
|
- **[Cyber-Duck](https://cyber-duck.co.uk)**
|
||||||
|
- **[DevSquad](https://devsquad.com/hire-laravel-developers)**
|
||||||
|
- **[Jump24](https://jump24.co.uk)**
|
||||||
|
- **[Redberry](https://redberry.international/laravel/)**
|
||||||
|
- **[Active Logic](https://activelogic.com)**
|
||||||
|
- **[byte5](https://byte5.de)**
|
||||||
|
- **[OP.GG](https://op.gg)**
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
|
||||||
|
|
||||||
|
## Code of Conduct
|
||||||
|
|
||||||
|
In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).
|
||||||
|
|
||||||
|
## Security Vulnerabilities
|
||||||
|
|
||||||
|
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed.
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Console\Commands;
|
||||||
|
|
||||||
|
use App\Models\Product;
|
||||||
|
use Illuminate\Console\Command;
|
||||||
|
use Illuminate\Support\Facades\File;
|
||||||
|
|
||||||
|
class DeleteUnusedUploads extends Command {
|
||||||
|
/**
|
||||||
|
* The name and signature of the console command.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $signature = 'uploads:cron';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The console command description.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $description = 'Deletes unused image uploads';
|
||||||
|
|
||||||
|
public function __construct() {
|
||||||
|
parent::__construct();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Execute the console command.
|
||||||
|
*/
|
||||||
|
public function handle() {
|
||||||
|
// Define the absolute path to the uploads directory
|
||||||
|
$uploadDirectory = storage_path('app/public/product-images/');
|
||||||
|
|
||||||
|
// Get all files in the directory
|
||||||
|
$files = File::allFiles($uploadDirectory);
|
||||||
|
|
||||||
|
// Loop through each file in the directory
|
||||||
|
foreach ($files as $file) {
|
||||||
|
|
||||||
|
// Get the relative path of the filev
|
||||||
|
$relativePath = 'product-images/' . str_replace($uploadDirectory, '', $file->getPathname());
|
||||||
|
|
||||||
|
|
||||||
|
// If the file doesn't exist in the database, delete it
|
||||||
|
$products = Product::whereJsonContains('images', $relativePath)->get();
|
||||||
|
|
||||||
|
if (count($products) < 1) {
|
||||||
|
echo time() . ' Deleting ' . $relativePath . PHP_EOL;
|
||||||
|
File::delete($file); // Delete the file from server
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,122 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Console\Commands;
|
||||||
|
|
||||||
|
use App\Models\Packing;
|
||||||
|
use App\Models\Product;
|
||||||
|
use App\Models\ProductInventory;
|
||||||
|
use App\Models\ProductSize;
|
||||||
|
use Illuminate\Console\Command;
|
||||||
|
use Illuminate\Support\Facades\DB;
|
||||||
|
|
||||||
|
class ImportShopify extends Command
|
||||||
|
{
|
||||||
|
protected $signature = 'import:shopify {file : Pfad zur Shopify Inventory-CSV}';
|
||||||
|
protected $description = 'Importiert Produkte aus einem Shopify Inventory-Export';
|
||||||
|
|
||||||
|
public function handle(): int
|
||||||
|
{
|
||||||
|
$file = $this->argument('file');
|
||||||
|
|
||||||
|
if (! file_exists($file)) {
|
||||||
|
$this->error("Datei nicht gefunden: $file");
|
||||||
|
return self::FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
|
$rows = $this->parseCsv($file);
|
||||||
|
|
||||||
|
if (empty($rows)) {
|
||||||
|
$this->error('CSV ist leer oder konnte nicht gelesen werden.');
|
||||||
|
return self::FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
|
$byHandle = collect($rows)->groupBy('Handle');
|
||||||
|
$this->info("Gefunden: {$byHandle->count()} Produkte, " . count($rows) . ' Varianten');
|
||||||
|
|
||||||
|
$stats = ['products' => 0, 'sizes' => 0, 'inventory' => 0, 'skipped' => 0];
|
||||||
|
|
||||||
|
DB::transaction(function () use ($byHandle, &$stats) {
|
||||||
|
foreach ($byHandle as $variants) {
|
||||||
|
$first = $variants->first();
|
||||||
|
|
||||||
|
$product = Product::firstOrCreate(
|
||||||
|
['title' => $first['Title']],
|
||||||
|
['recipes_id' => null],
|
||||||
|
);
|
||||||
|
if ($product->wasRecentlyCreated) {
|
||||||
|
$stats['products']++;
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($variants as $row) {
|
||||||
|
$packingRaw = $row['Option1 Value'];
|
||||||
|
|
||||||
|
// Format: "Standbodenbeutel 50 g" oder "Metalldose 40 g"
|
||||||
|
if (! preg_match('/^(.+?)\s+(\d+(?:[.,]\d+)?)\s*g$/i', $packingRaw, $m)) {
|
||||||
|
$this->warn(" ⚠ Verpackungsformat nicht erkannt: '$packingRaw' – übersprungen");
|
||||||
|
$stats['skipped']++;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$packing = Packing::firstOrCreate([
|
||||||
|
'name' => trim($m[1]),
|
||||||
|
'size' => (float) str_replace(',', '.', $m[2]),
|
||||||
|
]);
|
||||||
|
|
||||||
|
$sku = $row['SKU'] ?: null;
|
||||||
|
|
||||||
|
$size = ProductSize::firstOrCreate(
|
||||||
|
['product_id' => $product->id, 'packing_id' => $packing->id],
|
||||||
|
['sku' => $sku, 'price' => 0],
|
||||||
|
);
|
||||||
|
if ($size->wasRecentlyCreated) {
|
||||||
|
$stats['sizes']++;
|
||||||
|
}
|
||||||
|
|
||||||
|
$onHand = (int) $row['On hand (current)'];
|
||||||
|
for ($i = 0; $i < $onHand; $i++) {
|
||||||
|
ProductInventory::create([
|
||||||
|
'product_id' => $product->id,
|
||||||
|
'size_id' => $size->id,
|
||||||
|
]);
|
||||||
|
$stats['inventory']++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$this->info("✓ {$stats['products']} Produkte erstellt");
|
||||||
|
$this->info("✓ {$stats['sizes']} Varianten erstellt");
|
||||||
|
$this->info("✓ {$stats['inventory']} Lagereinträge erstellt");
|
||||||
|
|
||||||
|
if ($stats['skipped'] > 0) {
|
||||||
|
$this->warn("⚠ {$stats['skipped']} Zeilen übersprungen (Verpackungsformat unbekannt)");
|
||||||
|
}
|
||||||
|
|
||||||
|
return self::SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
private function parseCsv(string $file): array
|
||||||
|
{
|
||||||
|
$rows = [];
|
||||||
|
$headers = null;
|
||||||
|
|
||||||
|
$handle = fopen($file, 'r');
|
||||||
|
if ($handle === false) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
while (($data = fgetcsv($handle, 0, ',')) !== false) {
|
||||||
|
if ($headers === null) {
|
||||||
|
$headers = array_map('trim', $data);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (count($data) === count($headers)) {
|
||||||
|
$rows[] = array_combine($headers, $data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fclose($handle);
|
||||||
|
|
||||||
|
return $rows;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,142 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\BatchResource\Pages;
|
||||||
|
use App\Models\Batch;
|
||||||
|
use App\Models\Recipe;
|
||||||
|
use Filament\Forms;
|
||||||
|
use Filament\Forms\Form;
|
||||||
|
use Filament\Forms\Get;
|
||||||
|
use Filament\Resources\Resource;
|
||||||
|
use Filament\Tables;
|
||||||
|
use Filament\Tables\Table;
|
||||||
|
|
||||||
|
class BatchResource extends Resource
|
||||||
|
{
|
||||||
|
protected static ?string $model = Batch::class;
|
||||||
|
protected static ?string $navigationIcon = 'heroicon-o-qr-code';
|
||||||
|
protected static ?string $navigationLabel = 'Chargen (LOT)';
|
||||||
|
protected static ?string $modelLabel = 'Charge';
|
||||||
|
protected static ?string $pluralModelLabel = 'Chargen';
|
||||||
|
protected static ?int $navigationSort = 5;
|
||||||
|
|
||||||
|
public static function form(Form $form): Form
|
||||||
|
{
|
||||||
|
return $form->schema([
|
||||||
|
Forms\Components\Section::make('Charge')->schema([
|
||||||
|
Forms\Components\TextInput::make('lot_number')
|
||||||
|
->label('LOT-Nummer')
|
||||||
|
->required()
|
||||||
|
->unique(ignoreRecord: true)
|
||||||
|
->maxLength(255),
|
||||||
|
|
||||||
|
Forms\Components\Select::make('product_id')
|
||||||
|
->label('Produkt')
|
||||||
|
->relationship('product', 'title')
|
||||||
|
->searchable()
|
||||||
|
->preload()
|
||||||
|
->required()
|
||||||
|
->live(),
|
||||||
|
|
||||||
|
Forms\Components\Select::make('recipe_id')
|
||||||
|
->label('Rezeptur')
|
||||||
|
->relationship('recipe', 'name')
|
||||||
|
->searchable()
|
||||||
|
->preload()
|
||||||
|
->required()
|
||||||
|
->live(),
|
||||||
|
|
||||||
|
Forms\Components\DatePicker::make('produced_at')
|
||||||
|
->label('Produktionsdatum'),
|
||||||
|
|
||||||
|
Forms\Components\DatePicker::make('expires_at')
|
||||||
|
->label('Mindesthaltbarkeitsdatum'),
|
||||||
|
])->columns(2),
|
||||||
|
|
||||||
|
Forms\Components\Section::make('Herkunft der Gewürze')->schema([
|
||||||
|
Forms\Components\Repeater::make('origins')
|
||||||
|
->label('')
|
||||||
|
->relationship()
|
||||||
|
->schema([
|
||||||
|
Forms\Components\Select::make('spice_id')
|
||||||
|
->label('Gewürz')
|
||||||
|
->relationship('spice', 'name')
|
||||||
|
->searchable()
|
||||||
|
->preload()
|
||||||
|
->required(),
|
||||||
|
|
||||||
|
Forms\Components\Select::make('supplier_id')
|
||||||
|
->label('Lieferant')
|
||||||
|
->relationship('supplier', 'name')
|
||||||
|
->searchable()
|
||||||
|
->preload()
|
||||||
|
->nullable(),
|
||||||
|
|
||||||
|
Forms\Components\TextInput::make('origin_country')
|
||||||
|
->label('Herkunftsland')
|
||||||
|
->maxLength(100),
|
||||||
|
|
||||||
|
Forms\Components\TextInput::make('farmer')
|
||||||
|
->label('Landwirt / Betrieb')
|
||||||
|
->maxLength(255),
|
||||||
|
|
||||||
|
Forms\Components\Textarea::make('notes')
|
||||||
|
->label('Infos zum Gewürz')
|
||||||
|
->rows(2)
|
||||||
|
->columnSpanFull(),
|
||||||
|
])
|
||||||
|
->columns(2)
|
||||||
|
->addActionLabel('Gewürz hinzufügen')
|
||||||
|
->reorderable(false),
|
||||||
|
]),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function table(Table $table): Table
|
||||||
|
{
|
||||||
|
return $table
|
||||||
|
->columns([
|
||||||
|
Tables\Columns\TextColumn::make('lot_number')
|
||||||
|
->label('LOT-Nummer')
|
||||||
|
->searchable()
|
||||||
|
->sortable(),
|
||||||
|
|
||||||
|
Tables\Columns\TextColumn::make('product.title')
|
||||||
|
->label('Produkt')
|
||||||
|
->searchable(),
|
||||||
|
|
||||||
|
Tables\Columns\TextColumn::make('recipe.name')
|
||||||
|
->label('Rezeptur'),
|
||||||
|
|
||||||
|
Tables\Columns\TextColumn::make('produced_at')
|
||||||
|
->label('Produktion')
|
||||||
|
->date('d.m.Y')
|
||||||
|
->sortable(),
|
||||||
|
|
||||||
|
Tables\Columns\TextColumn::make('expires_at')
|
||||||
|
->label('MHD')
|
||||||
|
->date('d.m.Y')
|
||||||
|
->sortable(),
|
||||||
|
])
|
||||||
|
->defaultSort('produced_at', 'desc')
|
||||||
|
->filters([
|
||||||
|
Tables\Filters\SelectFilter::make('product')
|
||||||
|
->relationship('product', 'title')
|
||||||
|
->label('Produkt'),
|
||||||
|
])
|
||||||
|
->actions([
|
||||||
|
Tables\Actions\EditAction::make(),
|
||||||
|
Tables\Actions\DeleteAction::make(),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getPages(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'index' => Pages\ListBatches::route('/'),
|
||||||
|
'create' => Pages\CreateBatch::route('/create'),
|
||||||
|
'edit' => Pages\EditBatch::route('/{record}/edit'),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\BatchResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\BatchResource;
|
||||||
|
use Filament\Resources\Pages\CreateRecord;
|
||||||
|
|
||||||
|
class CreateBatch extends CreateRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = BatchResource::class;
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\BatchResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\BatchResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\EditRecord;
|
||||||
|
|
||||||
|
class EditBatch extends EditRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = BatchResource::class;
|
||||||
|
|
||||||
|
protected function getHeaderActions(): array
|
||||||
|
{
|
||||||
|
return [Actions\DeleteAction::make()];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\BatchResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\BatchResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\ListRecords;
|
||||||
|
|
||||||
|
class ListBatches extends ListRecords
|
||||||
|
{
|
||||||
|
protected static string $resource = BatchResource::class;
|
||||||
|
|
||||||
|
protected function getHeaderActions(): array
|
||||||
|
{
|
||||||
|
return [Actions\CreateAction::make()];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,90 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\PackingResource\Pages;
|
||||||
|
use App\Filament\User\Resources\PackingResource\RelationManagers;
|
||||||
|
use App\Models\Packing;
|
||||||
|
use Filament\Forms;
|
||||||
|
use Filament\Forms\Form;
|
||||||
|
use Filament\Resources\Resource;
|
||||||
|
use Filament\Tables;
|
||||||
|
use Filament\Tables\Table;
|
||||||
|
use Illuminate\Database\Eloquent\Builder;
|
||||||
|
use Illuminate\Database\Eloquent\SoftDeletingScope;
|
||||||
|
|
||||||
|
class PackingResource extends Resource
|
||||||
|
{
|
||||||
|
protected static ?string $model = Packing::class;
|
||||||
|
protected static ?string $navgationLabel = 'Verpackung & Größe';
|
||||||
|
protected static ?string $modelLabel = 'Verpackung & Größe';
|
||||||
|
protected static ?string $slug = 'verpackung';
|
||||||
|
protected static ?string $navigationIcon = 'heroicon-o-shopping-bag';
|
||||||
|
protected static ?string $navigationGroup = 'Ressourcen';
|
||||||
|
|
||||||
|
public static function form(Form $form): Form
|
||||||
|
{
|
||||||
|
return $form
|
||||||
|
->schema([
|
||||||
|
Forms\Components\TextInput::make('name')
|
||||||
|
->required()
|
||||||
|
->maxLength(255),
|
||||||
|
Forms\Components\TextInput::make('size')
|
||||||
|
->label('Größe')
|
||||||
|
->required()
|
||||||
|
->numeric(),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function table(Table $table): Table
|
||||||
|
{
|
||||||
|
return $table
|
||||||
|
->columns([
|
||||||
|
Tables\Columns\TextColumn::make('name')
|
||||||
|
->searchable(),
|
||||||
|
Tables\Columns\TextColumn::make('size')
|
||||||
|
->label('Größe')
|
||||||
|
->numeric()
|
||||||
|
->sortable(),
|
||||||
|
Tables\Columns\TextColumn::make('created_at')
|
||||||
|
->dateTime()
|
||||||
|
->sortable()
|
||||||
|
->toggleable(isToggledHiddenByDefault: true),
|
||||||
|
Tables\Columns\TextColumn::make('updated_at')
|
||||||
|
->dateTime()
|
||||||
|
->sortable()
|
||||||
|
->toggleable(isToggledHiddenByDefault: true),
|
||||||
|
])
|
||||||
|
->filters([
|
||||||
|
//
|
||||||
|
])
|
||||||
|
->actions([
|
||||||
|
Tables\Actions\EditAction::make(),
|
||||||
|
])
|
||||||
|
->bulkActions([
|
||||||
|
Tables\Actions\BulkActionGroup::make([
|
||||||
|
Tables\Actions\DeleteBulkAction::make(),
|
||||||
|
]),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getRelations(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
//
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getPages(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'index' => Pages\ListPackings::route('/'),
|
||||||
|
'create' => Pages\CreatePacking::route('/create'),
|
||||||
|
'edit' => Pages\EditPacking::route('/{record}/edit'),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
public static function getPluralLabel(): string
|
||||||
|
{
|
||||||
|
return 'Verpackung & Größe'; // Setze hier deinen eigenen Pluralbegriff ein
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\PackingResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\PackingResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\CreateRecord;
|
||||||
|
|
||||||
|
class CreatePacking extends CreateRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = PackingResource::class;
|
||||||
|
}
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\PackingResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\PackingResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\EditRecord;
|
||||||
|
|
||||||
|
class EditPacking extends EditRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = PackingResource::class;
|
||||||
|
|
||||||
|
protected function getHeaderActions(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
Actions\DeleteAction::make(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\PackingResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\PackingResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\ListRecords;
|
||||||
|
|
||||||
|
class ListPackings extends ListRecords
|
||||||
|
{
|
||||||
|
protected static string $resource = PackingResource::class;
|
||||||
|
|
||||||
|
protected function getHeaderActions(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
Actions\CreateAction::make(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,118 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\ProductInventoryResource\Pages;
|
||||||
|
use Filament\Forms;
|
||||||
|
use Filament\Forms\Form;
|
||||||
|
use Filament\Resources\Resource;
|
||||||
|
use Filament\Tables;
|
||||||
|
use Filament\Tables\Table;
|
||||||
|
use App\Models\Product;
|
||||||
|
use App\Models\ProductSize;
|
||||||
|
use App\Models\ProductInventory;
|
||||||
|
use Illuminate\Database\Eloquent\Builder;
|
||||||
|
use Illuminate\Support\Facades\DB;
|
||||||
|
|
||||||
|
|
||||||
|
class ProductInventoryResource extends Resource
|
||||||
|
{
|
||||||
|
protected static ?string $model = ProductInventory::class;
|
||||||
|
|
||||||
|
protected static ?string $navigationIcon = 'heroicon-o-inbox';
|
||||||
|
protected static ?string $navigationLabel = 'Inventar';
|
||||||
|
protected static ?string $modelLabel = 'Inventar';
|
||||||
|
protected static ?string $slug = 'inventar';
|
||||||
|
protected static ?string $navigationGroup = 'Lager';
|
||||||
|
|
||||||
|
public static function form(Form $form): Form
|
||||||
|
{
|
||||||
|
return $form
|
||||||
|
->schema([
|
||||||
|
Forms\Components\Select::make('product_id')
|
||||||
|
->label('Produkt')
|
||||||
|
->native(false)
|
||||||
|
->searchable()
|
||||||
|
->options(Product::all()->pluck('title', 'id'))
|
||||||
|
->reactive()
|
||||||
|
->afterStateUpdated(fn(callable $set) => $set('size_id', null))
|
||||||
|
->required()
|
||||||
|
->disabled(fn($record) => !is_null($record)),
|
||||||
|
|
||||||
|
Forms\Components\Select::make('size_id')
|
||||||
|
->label('Größe')
|
||||||
|
->native(false)
|
||||||
|
->options(function (callable $get) {
|
||||||
|
$productId = $get('product_id');
|
||||||
|
if (!$productId) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
return ProductSize::where('product_id', $productId)
|
||||||
|
->get()
|
||||||
|
->mapWithKeys(function ($product) {
|
||||||
|
return [$product->id => "{$product->description} ({$product->price}€)"];
|
||||||
|
});
|
||||||
|
})
|
||||||
|
->required()
|
||||||
|
->disabled(fn($record) => !is_null($record))
|
||||||
|
->reactive(),
|
||||||
|
Forms\Components\TextInput::make('amount')
|
||||||
|
->label('Mange')
|
||||||
|
->numeric(false)
|
||||||
|
->step(1)
|
||||||
|
->rules(['min:1'])
|
||||||
|
->default(1)
|
||||||
|
->required()
|
||||||
|
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function table(Table $table): Table
|
||||||
|
{
|
||||||
|
return $table
|
||||||
|
->columns([
|
||||||
|
Tables\Columns\TextColumn::make('product.title')->label('Produkt'),
|
||||||
|
Tables\Columns\TextColumn::make('size')->label('Größe')
|
||||||
|
->formatStateUsing(fn(ProductInventory $record) => "{$record->size->description} ({$record->size->price}€)"),
|
||||||
|
Tables\Columns\TextColumn::make('total')->label('Anzahl'),
|
||||||
|
|
||||||
|
|
||||||
|
])
|
||||||
|
->emptyStateHeading('Kein Inventar')
|
||||||
|
->recordUrl(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function getTableQuery(): Builder {
|
||||||
|
return ProductInventory::select(
|
||||||
|
DB::raw('MIN(id) as id'),
|
||||||
|
DB::raw('product_id'),
|
||||||
|
DB::raw('size_id'),
|
||||||
|
DB::raw('count(*) as total')
|
||||||
|
)
|
||||||
|
->where()
|
||||||
|
->groupBy('size_id');
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getEloquentQuery(): Builder {
|
||||||
|
return parent::getEloquentQuery()
|
||||||
|
->whereNull('out_at')
|
||||||
|
->select(DB::raw('MIN(id) AS id'), DB::raw('MIN(product_id) AS product_id'), 'size_id', DB::raw('COUNT(*) as total'))
|
||||||
|
->groupBy('size_id')
|
||||||
|
->orderBy('product_id');
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getPages(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'index' => Pages\ListProductInventory::route('/'),
|
||||||
|
'create' => Pages\CreateProductInventory::route('/create'),
|
||||||
|
'edit' => Pages\EditProductInventory::route('/{record}/edit'),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getPluralLabel(): string
|
||||||
|
{
|
||||||
|
return 'Inventar';
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\ProductInventoryResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\ProductInventoryResource;
|
||||||
|
use Filament\Resources\Pages\CreateRecord;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
use Filament\Notifications\Notification;
|
||||||
|
use App\Models\Product;
|
||||||
|
use App\Models\Spice;
|
||||||
|
use App\Models\ProductSize;
|
||||||
|
|
||||||
|
class CreateProductInventory extends CreateRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = ProductInventoryResource::class;
|
||||||
|
|
||||||
|
protected function handleRecordCreation(array $data): Model
|
||||||
|
{
|
||||||
|
$amount = $data['amount'] ?? 1;
|
||||||
|
unset($data['amount']);
|
||||||
|
|
||||||
|
$product = Product::find($data['product_id']);
|
||||||
|
if (!$product) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
$size = ProductSize::find($data['size_id']);
|
||||||
|
if (!$size) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$recipe = $product->recipe;
|
||||||
|
$packing = $size->packing;
|
||||||
|
$totalAmount = $packing->size;
|
||||||
|
|
||||||
|
|
||||||
|
foreach ($recipe->spices as $spice) {
|
||||||
|
$percentage = $spice->pivot->amount_in_percent;
|
||||||
|
$amountNeeded = (($percentage / 100) * $totalAmount) * $amount;
|
||||||
|
|
||||||
|
if (!$spice || $spice->quantity < $amountNeeded) {
|
||||||
|
Notification::make()
|
||||||
|
->warning()
|
||||||
|
->title('Fehler!')
|
||||||
|
->body('Nicht genügend '.htmlentities($spice->name).' für dieses Produkt in dieser Größe lagernd (bräuchte '.$amountNeeded.' '.htmlentities($spice->unit).')')
|
||||||
|
->send();
|
||||||
|
$this->halt();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$records = [];
|
||||||
|
for($i = 0; $i < $amount; $i++) {
|
||||||
|
$records[] = static::getModel()::create($data);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($recipe->spices as $spice) {
|
||||||
|
$percentage = $spice->pivot->amount_in_percent;
|
||||||
|
$amountNeeded = (($percentage / 100) * $totalAmount) * $amount;
|
||||||
|
Spice::findOrFail($spice->id)->decrement('quantity', $amountNeeded);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $records[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function getRedirectUrl(): string
|
||||||
|
{
|
||||||
|
return $this->previousUrl ?? $this->getResource()::getUrl('index');
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\ProductInventoryResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\ProductInventoryResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\EditRecord;
|
||||||
|
|
||||||
|
class EditProductInventory extends EditRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = ProductInventoryResource::class;
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\ProductInventoryResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\ProductInventoryResource;
|
||||||
|
use App\Models\ProductInventory;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\ListRecords;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class ListProductInventory extends ListRecords
|
||||||
|
{
|
||||||
|
protected static string $resource = ProductInventoryResource::class;
|
||||||
|
|
||||||
|
protected function getHeaderActions(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
Actions\CreateAction::make(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,171 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\ProductResource\Pages;
|
||||||
|
use App\Filament\User\Resources\ProductResource\RelationManagers;
|
||||||
|
use App\Models\Product;
|
||||||
|
use Filament\Forms;
|
||||||
|
use Filament\Forms\Form;
|
||||||
|
use Filament\Forms\Components\FileUpload;
|
||||||
|
use Filament\Forms\Components\Repeater;
|
||||||
|
use Filament\Forms\Components\Select;
|
||||||
|
use Filament\Forms\Components\TextInput;
|
||||||
|
use Filament\Resources\Resource;
|
||||||
|
use Filament\Tables;
|
||||||
|
use Filament\Tables\Table;
|
||||||
|
use App\Models\Packing;
|
||||||
|
|
||||||
|
class ProductResource extends Resource {
|
||||||
|
protected static ?string $model = Product::class;
|
||||||
|
|
||||||
|
protected static ?string $navigationIcon = 'heroicon-o-inbox';
|
||||||
|
protected static ?string $navigationLabel = 'Produkte';
|
||||||
|
protected static ?string $modelLabel = 'Produkt';
|
||||||
|
protected static ?string $slug = 'produkt';
|
||||||
|
protected static ?string $navigationGroup = 'Ressourcen';
|
||||||
|
|
||||||
|
public static function form(Form $form): Form {
|
||||||
|
return $form
|
||||||
|
->schema([
|
||||||
|
Forms\Components\TextInput::make('title')
|
||||||
|
->label('Name')
|
||||||
|
->required(),
|
||||||
|
FileUpload::make('images')
|
||||||
|
->label('Bilder')
|
||||||
|
->multiple()
|
||||||
|
->image()
|
||||||
|
->maxFiles(15)
|
||||||
|
->directory('product-images')
|
||||||
|
->columnSpanFull(),
|
||||||
|
Forms\Components\Textarea::make('description')
|
||||||
|
->label('Beschreibung'),
|
||||||
|
Forms\Components\Textarea::make('package_content')
|
||||||
|
->label('Inhaltsangabe'),
|
||||||
|
Forms\Components\Select::make('recipes_id')
|
||||||
|
->label('Rezept')
|
||||||
|
->native(false)
|
||||||
|
->searchable()
|
||||||
|
->relationship('recipe', 'name')
|
||||||
|
->required(),
|
||||||
|
Repeater::make('sizes')
|
||||||
|
->schema([
|
||||||
|
TextInput::make('gtin')
|
||||||
|
->label('GTIN'),
|
||||||
|
TextInput::make('description')
|
||||||
|
->label('Bezeichnung'),
|
||||||
|
Select::make('packing_id')
|
||||||
|
->label('Verpackung')
|
||||||
|
->options(function () {
|
||||||
|
return Packing::all()->mapWithKeys(function ($packing) {
|
||||||
|
return [$packing->id => $packing->name . ' (' . $packing->size . ')'];
|
||||||
|
});
|
||||||
|
})
|
||||||
|
->searchable()
|
||||||
|
->required(),
|
||||||
|
TextInput::make('price')
|
||||||
|
->label('Preis (in EUR)')
|
||||||
|
->numeric()
|
||||||
|
->required(),
|
||||||
|
])
|
||||||
|
->label('Größen & Preise')
|
||||||
|
->columns(2)
|
||||||
|
->addActionLabel('Option hinzufügen')
|
||||||
|
->afterStateHydrated(function ($state, $set, $record) {
|
||||||
|
if ($record) {
|
||||||
|
// Load the spices relationship with pivot data
|
||||||
|
$record->load('sizes');
|
||||||
|
|
||||||
|
// Map the spices and their pivot data to the format the repeater expects
|
||||||
|
$sizesData = $record->sizes->map(function ($size) {
|
||||||
|
return [
|
||||||
|
'packing_id' => $size->id,
|
||||||
|
'price' => $size->pivot->price,
|
||||||
|
'description' => $size->pivot->description,
|
||||||
|
];
|
||||||
|
})->toArray();
|
||||||
|
|
||||||
|
// Set the state for the repeater field to the mapped spices data
|
||||||
|
$set('sizes', $sizesData);
|
||||||
|
}
|
||||||
|
return $state;
|
||||||
|
}),
|
||||||
|
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function table(Table $table): Table {
|
||||||
|
return $table
|
||||||
|
->columns([
|
||||||
|
Tables\Columns\ImageColumn::make('images')
|
||||||
|
->label('Bild')
|
||||||
|
->limit(1),
|
||||||
|
Tables\Columns\TextColumn::make('title')
|
||||||
|
->label('Name')
|
||||||
|
->sortable()
|
||||||
|
->searchable(),
|
||||||
|
Tables\Columns\TextColumn::make('recipe.name')
|
||||||
|
->label('Rezept'),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getPages(): array {
|
||||||
|
return [
|
||||||
|
'index' => Pages\ListProducts::route('/'),
|
||||||
|
'create' => Pages\CreateProduct::route('/create'),
|
||||||
|
'edit' => Pages\EditProduct::route('/{record}/edit'),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getPluralLabel(): string {
|
||||||
|
return 'Produkte';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
protected function mutateFormDataBeforeCreate(array $data): array {
|
||||||
|
if (isset($data['images'])) {
|
||||||
|
$data['images'] = json_encode($data['images']);
|
||||||
|
}
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function mutateFormDataBeforeUpdate(array $data): array {
|
||||||
|
if (isset($data['images'])) {
|
||||||
|
$data['images'] = json_encode($data['images']);
|
||||||
|
}
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getRecord($id) {
|
||||||
|
return Product::with('sizes')->findOrFail($id); // Eager load spices relationship
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getTableRecordTitle() {
|
||||||
|
return function ($record) {
|
||||||
|
$images = json_decode($record->images, true);
|
||||||
|
return implode(', ', $images);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getActions(): array {
|
||||||
|
return [
|
||||||
|
Actions\DeleteAction::make(),
|
||||||
|
Action::make('deleteImage')
|
||||||
|
->action(function ($record, $data) {
|
||||||
|
$images = json_decode($record->images, true);
|
||||||
|
$index = array_search($data['image'], $images);
|
||||||
|
if ($index !== false) {
|
||||||
|
unset($images[$index]);
|
||||||
|
$record->update(['images' => array_values($images)]);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
->form([
|
||||||
|
Forms\Components\Select::make('image')
|
||||||
|
->options(function ($record) {
|
||||||
|
return array_combine($record->images, $record->images);
|
||||||
|
})
|
||||||
|
->required(),
|
||||||
|
]),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\ProductResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\ProductResource;
|
||||||
|
use Filament\Resources\Pages\CreateRecord;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
use App\Models\ProductSize;
|
||||||
|
|
||||||
|
class CreateProduct extends CreateRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = ProductResource::class;
|
||||||
|
|
||||||
|
protected function handleRecordCreation(array $data): Model {
|
||||||
|
|
||||||
|
$record = static::getModel()::create($data);
|
||||||
|
|
||||||
|
foreach ($data['sizes'] as $size) {
|
||||||
|
ProductSize::create([
|
||||||
|
'product_id' => $record->id,
|
||||||
|
'packing_id' => $size['packing_id'],
|
||||||
|
'description' => $size['description'],
|
||||||
|
'price' => $size['price'],
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
return $record;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\ProductResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\ProductResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\EditRecord;
|
||||||
|
|
||||||
|
class EditProduct extends EditRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = ProductResource::class;
|
||||||
|
|
||||||
|
protected function getHeaderActions(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
Actions\DeleteAction::make(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function afterSave(): void {
|
||||||
|
$this->syncSizes();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function syncSizes(): void {
|
||||||
|
$product = $this->record;
|
||||||
|
|
||||||
|
$sizes = collect($this->data['sizes'] ?? [])
|
||||||
|
->mapWithKeys(function ($size) {
|
||||||
|
return [
|
||||||
|
$size['packing_id'] => ['description' => $size['description'], 'price' =>$size['price']],
|
||||||
|
];
|
||||||
|
})
|
||||||
|
->toArray();
|
||||||
|
|
||||||
|
$product->sizes()->sync($sizes);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\ProductResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\ProductResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\ListRecords;
|
||||||
|
|
||||||
|
class ListProducts extends ListRecords
|
||||||
|
{
|
||||||
|
protected static string $resource = ProductResource::class;
|
||||||
|
|
||||||
|
protected function getHeaderActions(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
Actions\CreateAction::make(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,121 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\ProductSaleResource\Pages;
|
||||||
|
use App\Models\ProductSale;
|
||||||
|
use App\Models\Product;
|
||||||
|
use App\Models\ProductSize;
|
||||||
|
use Filament\Forms;
|
||||||
|
use Filament\Forms\Form;
|
||||||
|
use Filament\Resources\Resource;
|
||||||
|
use Filament\Tables;
|
||||||
|
use Filament\Tables\Table;
|
||||||
|
use Filament\Forms\Components\TextInput;
|
||||||
|
use App\Rules\ProductsHaveEnoughStock;
|
||||||
|
|
||||||
|
|
||||||
|
use Filament\Forms\Components\DatePicker;
|
||||||
|
use Filament\Tables\Columns\TextColumn;
|
||||||
|
|
||||||
|
class ProductSaleResource extends Resource {
|
||||||
|
protected static ?string $model = ProductSale::class;
|
||||||
|
|
||||||
|
protected static ?string $navigationIcon = 'heroicon-o-arrow-up-on-square';
|
||||||
|
|
||||||
|
protected static ?string $navgationLabel = 'Warenausgang';
|
||||||
|
protected static ?string $modelLabel = 'Warenausgang';
|
||||||
|
protected static ?string $slug = 'warenausgang';
|
||||||
|
protected static ?string $navigationGroup = 'Waren Ein/Ausgang';
|
||||||
|
|
||||||
|
|
||||||
|
public $product_id;
|
||||||
|
public $size_id;
|
||||||
|
public $amount;
|
||||||
|
|
||||||
|
public static function form(Form $form): Form {
|
||||||
|
return $form
|
||||||
|
->schema([
|
||||||
|
Forms\Components\Select::make('product_id')
|
||||||
|
->label('Produkt')
|
||||||
|
->native(false)
|
||||||
|
->searchable()
|
||||||
|
->options(Product::all()->pluck('title', 'id'))
|
||||||
|
->reactive()
|
||||||
|
->afterStateUpdated(fn(callable $set) => $set('size_id', null))
|
||||||
|
->disabled(fn($record) => !is_null($record))
|
||||||
|
->required(),
|
||||||
|
|
||||||
|
Forms\Components\Select::make('size_id')
|
||||||
|
->label('Größe')
|
||||||
|
->native(false)
|
||||||
|
->options(function (callable $get) {
|
||||||
|
$productId = $get('product_id');
|
||||||
|
if (!$productId) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
return ProductSize::where('product_id', $productId)
|
||||||
|
->get()
|
||||||
|
->mapWithKeys(function ($product) {
|
||||||
|
return [$product->id => "{$product->description} ({$product->price}€)"];
|
||||||
|
});
|
||||||
|
})
|
||||||
|
->required()
|
||||||
|
->disabled(fn($record) => !is_null($record))
|
||||||
|
->reactive(),
|
||||||
|
|
||||||
|
TextInput::make('amount')
|
||||||
|
->label('Verkaufsmenge')
|
||||||
|
->numeric()
|
||||||
|
->step(1)
|
||||||
|
->required()
|
||||||
|
->disabled(fn($record) => !is_null($record))
|
||||||
|
->rules(['min:1']),
|
||||||
|
|
||||||
|
DatePicker::make('sold_at')
|
||||||
|
->label('Verkaufsdatum')
|
||||||
|
->default(now())
|
||||||
|
->disabled(fn($record) => !is_null($record))
|
||||||
|
->required(),
|
||||||
|
|
||||||
|
TextInput::make('comment')
|
||||||
|
->label('Kommentar')
|
||||||
|
->helperText('Verkaufsquelle (Bsp. Shopify, etc.)'),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function table(Table $table): Table {
|
||||||
|
return $table
|
||||||
|
->columns([
|
||||||
|
Tables\Columns\TextColumn::make('product.title')->label('Produkt'),
|
||||||
|
Tables\Columns\TextColumn::make('size')->label('Größe')
|
||||||
|
->formatStateUsing(fn(ProductSale $record) => "{$record->size->description} ({$record->size->price}€)"),
|
||||||
|
TextColumn::make('amount')->label('Verkaufsmenge'),
|
||||||
|
TextColumn::make('sold_at')->label('Verkaufsdatum')->date('d.m.Y'),
|
||||||
|
TextColumn::make('comment')->label('Kommentar'),
|
||||||
|
])
|
||||||
|
->actions([
|
||||||
|
Tables\Actions\EditAction::make(),
|
||||||
|
])
|
||||||
|
->bulkActions([
|
||||||
|
Tables\Actions\DeleteBulkAction::make(),
|
||||||
|
])
|
||||||
|
->emptyStateHeading('Keine Warenausgänge')
|
||||||
|
->recordUrl(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getRelations(): array {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getPages(): array {
|
||||||
|
return [
|
||||||
|
'index' => Pages\ListProductSales::route('/'),
|
||||||
|
'create' => Pages\CreateProductSale::route('/create'),
|
||||||
|
'edit' => Pages\EditProductSale::route('/{record}/edit'),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
public static function getPluralLabel(): string {
|
||||||
|
return 'Warenausgang';
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,41 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\ProductSaleResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\ProductSaleResource;
|
||||||
|
use Filament\Resources\Pages\CreateRecord;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
use Illuminate\Support\Facades\DB;
|
||||||
|
use Filament\Notifications\Notification;
|
||||||
|
|
||||||
|
class CreateProductSale extends CreateRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = ProductSaleResource::class;
|
||||||
|
|
||||||
|
protected function handleRecordCreation(array $data): Model
|
||||||
|
{
|
||||||
|
$count = DB::table('products_inventory')
|
||||||
|
->where('product_id', '=', $data['product_id'])
|
||||||
|
->where('size_id', '=', $data['size_id'])
|
||||||
|
->count();
|
||||||
|
|
||||||
|
if ($count < $data['amount']) {
|
||||||
|
Notification::make()
|
||||||
|
->warning()
|
||||||
|
->title('Fehler!')
|
||||||
|
->body('Nicht genügend Produkte in dieser Größe lagernd.')
|
||||||
|
->send();
|
||||||
|
$this->halt();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
$record = static::getModel()::create($data);
|
||||||
|
|
||||||
|
DB::table('products_inventory')
|
||||||
|
->where('product_id', '=', $data['product_id'])
|
||||||
|
->where('size_id', '=', $data['size_id'])
|
||||||
|
->limit($data['amount'] ?? 1)
|
||||||
|
->update(['out_at' => now()]);
|
||||||
|
|
||||||
|
return $record;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\ProductSaleResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\ProductSaleResource;
|
||||||
|
use Filament\Resources\Pages\EditRecord;
|
||||||
|
|
||||||
|
class EditProductSale extends EditRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = ProductSaleResource::class;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
protected function getHeaderActions(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
\Filament\Actions\DeleteAction::make(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\ProductSaleResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\ProductSaleResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\ListRecords;
|
||||||
|
|
||||||
|
class ListProductSales extends ListRecords
|
||||||
|
{
|
||||||
|
protected static string $resource = ProductSaleResource::class;
|
||||||
|
|
||||||
|
protected function getHeaderActions(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
Actions\CreateAction::make(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\ProductSaleResource\Widgets;
|
||||||
|
|
||||||
|
use Leandrocfe\FilamentApexCharts\Widgets\ApexChartWidget;
|
||||||
|
use Flowframe\Trend\Trend;
|
||||||
|
use Flowframe\Trend\TrendValue;
|
||||||
|
use App\Models\ProductSale;
|
||||||
|
|
||||||
|
class SalesChart extends ApexChartWidget {
|
||||||
|
protected static ?string $chartId = 'productSalesChart';
|
||||||
|
protected static ?string $heading = 'Verkäufe dieses Quartal';
|
||||||
|
|
||||||
|
protected function getOptions(): array {
|
||||||
|
$data = Trend::model(ProductSale::class)
|
||||||
|
->between(
|
||||||
|
start: now()->startOfQuarter(),
|
||||||
|
end: now()->endOfQuarter(),
|
||||||
|
)
|
||||||
|
->perWeek()
|
||||||
|
->count();
|
||||||
|
|
||||||
|
return [
|
||||||
|
'chart' => [
|
||||||
|
'type' => 'line',
|
||||||
|
'height' => 300,
|
||||||
|
],
|
||||||
|
'series' => [
|
||||||
|
[
|
||||||
|
'name' => 'Anzahl Verkäufe',
|
||||||
|
'data' => $data->map(fn(TrendValue $value) => $value->aggregate),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'xaxis' => [
|
||||||
|
'categories' => $data->map(fn(TrendValue $value) => $value->date),
|
||||||
|
'labels' => [
|
||||||
|
'style' => [
|
||||||
|
'fontFamily' => 'inherit',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'yaxis' => [
|
||||||
|
'labels' => [
|
||||||
|
'style' => [
|
||||||
|
'fontFamily' => 'inherit',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'colors' => ['#f59e0b'],
|
||||||
|
'stroke' => [
|
||||||
|
'curve' => 'smooth',
|
||||||
|
],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,124 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\RecipeResource\Pages;
|
||||||
|
use App\Models\Recipe;
|
||||||
|
use App\Models\RecipeSpice;
|
||||||
|
use App\Models\Spice;
|
||||||
|
use Filament\Forms;
|
||||||
|
use Filament\Forms\Form;
|
||||||
|
use Filament\Resources\Resource;
|
||||||
|
use Filament\Tables;
|
||||||
|
use Filament\Tables\Table;
|
||||||
|
use Filament\Forms\Components\Select;
|
||||||
|
use Filament\Forms\Components\TextInput;
|
||||||
|
use Filament\Forms\Components\Textarea;
|
||||||
|
use Filament\Forms\Components\Repeater;
|
||||||
|
use Filament\Tables\Columns\TextColumn;
|
||||||
|
use App\Rules\SumEquals100;
|
||||||
|
|
||||||
|
class RecipeResource extends Resource
|
||||||
|
{
|
||||||
|
protected static ?string $model = Recipe::class;
|
||||||
|
protected static ?string $navigationIcon = 'heroicon-o-book-open';
|
||||||
|
protected static ?string $navgationLabel = 'Rezepte';
|
||||||
|
protected static ?string $modelLabel = 'Rezepte';
|
||||||
|
protected static ?string $slug = 'rezept';
|
||||||
|
protected static ?string $navigationGroup = 'Ressourcen';
|
||||||
|
|
||||||
|
public static function form(Form $form): Form
|
||||||
|
{
|
||||||
|
return $form
|
||||||
|
->schema([
|
||||||
|
TextInput::make('name')
|
||||||
|
->required()
|
||||||
|
->label('Name'),
|
||||||
|
Textarea::make('description')
|
||||||
|
->label('Beschreibung'),
|
||||||
|
Repeater::make('spices')
|
||||||
|
->schema([
|
||||||
|
Select::make('spice_id')
|
||||||
|
->label('Rohstoff')
|
||||||
|
->options(Spice::all()->pluck('name', 'id'))
|
||||||
|
->searchable()
|
||||||
|
->required(),
|
||||||
|
|
||||||
|
TextInput::make('amount_in_percent')
|
||||||
|
->label('Anteil (in Prozent)')
|
||||||
|
->numeric()
|
||||||
|
->required()
|
||||||
|
->rules(['min:1', 'max:100']),
|
||||||
|
])
|
||||||
|
->label('Inhalt')
|
||||||
|
->columns(2)
|
||||||
|
->addActionLabel('Inhaltsstoff hinzufügen')
|
||||||
|
->afterStateHydrated(function ($state, $set, $record) {
|
||||||
|
if ($record) {
|
||||||
|
// Load the spices relationship with pivot data
|
||||||
|
$record->load('spices');
|
||||||
|
|
||||||
|
// Map the spices and their pivot data to the format the repeater expects
|
||||||
|
$spicesData = $record->spices->map(function ($spice) {
|
||||||
|
return [
|
||||||
|
'spice_id' => $spice->id,
|
||||||
|
'amount_in_percent' => $spice->pivot->amount_in_percent,
|
||||||
|
];
|
||||||
|
})->toArray();
|
||||||
|
|
||||||
|
// Set the state for the repeater field to the mapped spices data
|
||||||
|
$set('spices', $spicesData);
|
||||||
|
}
|
||||||
|
return $state;
|
||||||
|
})
|
||||||
|
->rules([new SumEquals100()]),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
*/
|
||||||
|
|
||||||
|
public static function table(Table $table): Table
|
||||||
|
{
|
||||||
|
return $table
|
||||||
|
->columns([
|
||||||
|
TextColumn::make('name')
|
||||||
|
->label('Name')
|
||||||
|
->sortable()
|
||||||
|
->searchable(),
|
||||||
|
TextColumn::make('description')
|
||||||
|
->label('Beschreibung')
|
||||||
|
->limit(50),
|
||||||
|
TextColumn::make('spices.name')
|
||||||
|
->label('Inhalt')
|
||||||
|
->formatStateUsing(function ($state, $record) {
|
||||||
|
$spices = $record->spices->take(3)->map(function ($spice) {
|
||||||
|
return $spice->name . ' (' . round($spice->pivot->amount_in_percent) . '%)';
|
||||||
|
});
|
||||||
|
|
||||||
|
if ($record->spices->count() > 3) {
|
||||||
|
$spices->push('... weitere');
|
||||||
|
}
|
||||||
|
|
||||||
|
return $spices->implode(', ');
|
||||||
|
})
|
||||||
|
->limit(50),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getRecord($id) {
|
||||||
|
return Recipe::with('spices')->findOrFail($id); // Eager load spices relationship
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getPages(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'index' => Pages\ListRecipes::route('/'),
|
||||||
|
'create' => Pages\CreateRecipe::route('/create'),
|
||||||
|
'edit' => Pages\EditRecipe::route('/{record}/edit'),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
public static function getPluralLabel(): string
|
||||||
|
{
|
||||||
|
return 'Rezepte';
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\RecipeResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\RecipeResource;
|
||||||
|
use Filament\Resources\Pages\CreateRecord;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
use App\Models\RecipeSpice;
|
||||||
|
|
||||||
|
class CreateRecipe extends CreateRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = RecipeResource::class;
|
||||||
|
|
||||||
|
protected function handleRecordCreation(array $data): Model
|
||||||
|
{
|
||||||
|
$record = static::getModel()::create($data);
|
||||||
|
|
||||||
|
foreach ($data['spices'] as $spice) {
|
||||||
|
RecipeSpice::create([
|
||||||
|
'recipe_id' => $record->id,
|
||||||
|
'spice_id' => $spice['spice_id'],
|
||||||
|
'amount_in_percent' => $spice['amount_in_percent'],
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
return $record;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
<?php
|
||||||
|
namespace App\Filament\User\Resources\RecipeResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\RecipeResource;
|
||||||
|
use Filament\Resources\Pages\EditRecord;
|
||||||
|
|
||||||
|
class EditRecipe extends EditRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = RecipeResource::class;
|
||||||
|
|
||||||
|
protected function afterSave(): void
|
||||||
|
{
|
||||||
|
$this->syncSpices();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function syncSpices(): void
|
||||||
|
{
|
||||||
|
$recipe = $this->record;
|
||||||
|
|
||||||
|
$spices = collect($this->data['spices'] ?? [])
|
||||||
|
->mapWithKeys(function ($spice) {
|
||||||
|
return [
|
||||||
|
$spice['spice_id'] => ['amount_in_percent' => $spice['amount_in_percent']],
|
||||||
|
];
|
||||||
|
})
|
||||||
|
->toArray();
|
||||||
|
|
||||||
|
$recipe->spices()->sync($spices);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\RecipeResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\RecipeResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\ListRecords;
|
||||||
|
|
||||||
|
class ListRecipes extends ListRecords
|
||||||
|
{
|
||||||
|
protected static string $resource = RecipeResource::class;
|
||||||
|
|
||||||
|
protected function getHeaderActions(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
Actions\CreateAction::make(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,97 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\SpiceResource\Pages;
|
||||||
|
use App\Filament\User\Resources\SpiceResource\RelationManagers;
|
||||||
|
use App\Models\Spice;
|
||||||
|
use Filament\Forms;
|
||||||
|
use Filament\Forms\Form;
|
||||||
|
use Filament\Resources\Resource;
|
||||||
|
use Filament\Tables;
|
||||||
|
use Filament\Tables\Table;
|
||||||
|
use Illuminate\Database\Eloquent\Builder;
|
||||||
|
use Illuminate\Database\Eloquent\SoftDeletingScope;
|
||||||
|
|
||||||
|
class SpiceResource extends Resource
|
||||||
|
{
|
||||||
|
protected static ?string $model = Spice::class;
|
||||||
|
protected static ?string $navgationLabel = 'Rohstoffe';
|
||||||
|
protected static ?string $modelLabel = 'Rohstoff';
|
||||||
|
protected static ?string $slug = 'rohstoffe';
|
||||||
|
protected static ?string $navigationGroup = 'Lager';
|
||||||
|
|
||||||
|
protected static ?string $navigationIcon = 'heroicon-o-cube';
|
||||||
|
|
||||||
|
public static function form(Form $form): Form
|
||||||
|
{
|
||||||
|
return $form
|
||||||
|
->schema([
|
||||||
|
Forms\Components\TextInput::make('name')
|
||||||
|
->required()
|
||||||
|
->maxLength(255),
|
||||||
|
Forms\Components\Select::make('unit')
|
||||||
|
->label('Mengeneinheit')
|
||||||
|
->native(false)
|
||||||
|
->searchable()
|
||||||
|
->options([
|
||||||
|
'grams' => '(Kilo-)Gramm',
|
||||||
|
'pieces' => 'Stück',
|
||||||
|
'liter' => 'Liter',
|
||||||
|
])
|
||||||
|
->required(),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function table(Table $table): Table
|
||||||
|
{
|
||||||
|
return $table
|
||||||
|
->columns([
|
||||||
|
Tables\Columns\TextColumn::make('name')
|
||||||
|
->searchable(),
|
||||||
|
Tables\Columns\TextColumn::make('quantity')->label('Menge lagernd')
|
||||||
|
->formatStateUsing(function (Spice $record) {
|
||||||
|
if ($record->unit == 'grams') {
|
||||||
|
return ($record->quantity >= 1000) ? round($record->quantity / 1000, 2) . 'kg' : $record->quantity . 'g';
|
||||||
|
}elseif($record->unit == 'pieces'){
|
||||||
|
return $record->quantity . ' Stück';
|
||||||
|
}elseif($record->unit == 'liter'){
|
||||||
|
return $record->quantity . ' Liter';
|
||||||
|
}else{
|
||||||
|
return $record->quantity . ' ' . ucfirst($record->unit);
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
])
|
||||||
|
->filters([
|
||||||
|
//
|
||||||
|
])
|
||||||
|
->actions([
|
||||||
|
Tables\Actions\EditAction::make(),
|
||||||
|
])
|
||||||
|
->bulkActions([
|
||||||
|
Tables\Actions\BulkActionGroup::make([
|
||||||
|
Tables\Actions\DeleteBulkAction::make(),
|
||||||
|
]),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getRelations(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
//
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getPages(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'index' => Pages\ListSpices::route('/'),
|
||||||
|
'create' => Pages\CreateSpice::route('/create'),
|
||||||
|
'edit' => Pages\EditSpice::route('/{record}/edit'),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
public static function getPluralLabel(): string
|
||||||
|
{
|
||||||
|
return 'Rohstoffe'; // Setze hier deinen eigenen Pluralbegriff ein
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\SpiceResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\SpiceResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\CreateRecord;
|
||||||
|
|
||||||
|
class CreateSpice extends CreateRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = SpiceResource::class;
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\SpiceResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\SpiceResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\EditRecord;
|
||||||
|
|
||||||
|
class EditSpice extends EditRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = SpiceResource::class;
|
||||||
|
|
||||||
|
protected function getHeaderActions(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
Actions\DeleteAction::make(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\SpiceResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\SpiceResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\ListRecords;
|
||||||
|
|
||||||
|
class ListSpices extends ListRecords
|
||||||
|
{
|
||||||
|
protected static string $resource = SpiceResource::class;
|
||||||
|
|
||||||
|
protected function getHeaderActions(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
Actions\CreateAction::make(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,94 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\SpiceResource\Widgets;
|
||||||
|
|
||||||
|
use Leandrocfe\FilamentApexCharts\Widgets\ApexChartWidget;
|
||||||
|
use Filament\Support\RawJs;
|
||||||
|
use App\Models\Spice;
|
||||||
|
|
||||||
|
class SpiceChart extends ApexChartWidget {
|
||||||
|
protected static ?string $chartId = 'spiceChart';
|
||||||
|
protected static ?string $heading = 'Rohstoffmengen im Lager';
|
||||||
|
|
||||||
|
protected function getOptions(): array {
|
||||||
|
$data = Spice::all();
|
||||||
|
|
||||||
|
$data_array = [];
|
||||||
|
$labels = [];
|
||||||
|
foreach ($data as $label) {
|
||||||
|
if ($label->unit == 'grams') {
|
||||||
|
$data_array[] = round($label->quantity / 1000, 2);
|
||||||
|
$labels[] = $label->name . ' (kg)';
|
||||||
|
} else {
|
||||||
|
$data_array[] = $label->quantity;
|
||||||
|
if ($label->unit == 'pieces') {
|
||||||
|
$labels[] = $label->name . ' (Stück)';
|
||||||
|
} elseif ($label->unit == 'liter') {
|
||||||
|
$labels[] = $label->name . ' (Liter)';
|
||||||
|
} else {
|
||||||
|
$labels[] = $label->name . ' (' . ucfirst($label->unit) . ')';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
return [
|
||||||
|
'chart' => [
|
||||||
|
'type' => 'bar',
|
||||||
|
'height' => 300,
|
||||||
|
],
|
||||||
|
'series' => [
|
||||||
|
[
|
||||||
|
'name' => 'BasicBarChart',
|
||||||
|
'data' => $data_array,
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'xaxis' => [
|
||||||
|
'categories' => $labels,
|
||||||
|
'labels' => [
|
||||||
|
'style' => [
|
||||||
|
'fontFamily' => 'inherit',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'yaxis' => [
|
||||||
|
'labels' => [
|
||||||
|
'style' => [
|
||||||
|
'fontFamily' => 'inherit',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'colors' => ['#f59e0b'],
|
||||||
|
'plotOptions' => [
|
||||||
|
'bar' => [
|
||||||
|
'borderRadius' => 3,
|
||||||
|
'horizontal' => false,
|
||||||
|
],
|
||||||
|
],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function extraJsOptions(): ?RawJs {
|
||||||
|
return RawJs::make(<<<'JS'
|
||||||
|
{
|
||||||
|
xaxis: {
|
||||||
|
labels: {
|
||||||
|
formatter: function (val, timestamp, opts) {
|
||||||
|
return val.replace('( ', '(')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
dataLabels: {
|
||||||
|
enabled: true,
|
||||||
|
formatter: function (val, opt) {
|
||||||
|
return val+''+opt.w.globals.labels[opt.dataPointIndex].match(/\((.*?)\)/)[1]
|
||||||
|
},
|
||||||
|
dropShadow: {
|
||||||
|
enabled: true
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
JS);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,121 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\SpiceSupplierResource\Pages;
|
||||||
|
use App\Filament\User\Resources\SpiceSupplierResource\RelationManagers;
|
||||||
|
use App\Models\SpiceSupplier;
|
||||||
|
use Filament\Forms;
|
||||||
|
use Filament\Forms\Form;
|
||||||
|
use Filament\Resources\Resource;
|
||||||
|
use Filament\Tables;
|
||||||
|
use Filament\Tables\Table;
|
||||||
|
use Illuminate\Database\Eloquent\Builder;
|
||||||
|
use Illuminate\Database\Eloquent\SoftDeletingScope;
|
||||||
|
|
||||||
|
use Filament\Forms\Components\Select;
|
||||||
|
use Filament\Forms\Components\TextInput;
|
||||||
|
|
||||||
|
|
||||||
|
use Filament\Forms\Components\DatePicker;
|
||||||
|
use Filament\Tables\Columns\TextColumn;
|
||||||
|
|
||||||
|
class SpiceSupplierResource extends Resource
|
||||||
|
{
|
||||||
|
protected static ?string $model = SpiceSupplier::class;
|
||||||
|
|
||||||
|
protected static ?string $navigationIcon = 'heroicon-o-arrow-down-on-square';
|
||||||
|
|
||||||
|
protected static ?string $navgationLabel = 'Rohstofflieferungen';
|
||||||
|
protected static ?string $modelLabel = 'Rohstofflieferungen';
|
||||||
|
protected static ?string $slug = 'rohstofflieferung';
|
||||||
|
protected static ?string $navigationGroup = 'Waren Ein/Ausgang';
|
||||||
|
|
||||||
|
public static function form(Form $form): Form
|
||||||
|
{
|
||||||
|
return $form
|
||||||
|
->schema([
|
||||||
|
Select::make('spice_id')
|
||||||
|
->label('Rohstoff')
|
||||||
|
->relationship('spice', 'name')
|
||||||
|
->required()
|
||||||
|
->preload()
|
||||||
|
->searchable(),
|
||||||
|
Select::make('supplier_id')
|
||||||
|
->label('Lieferant')
|
||||||
|
->relationship('supplier', 'name')
|
||||||
|
->required()
|
||||||
|
->preload()
|
||||||
|
->searchable(),
|
||||||
|
|
||||||
|
TextInput::make('amount')
|
||||||
|
->label('Liefermenge')
|
||||||
|
->numeric()
|
||||||
|
->required()
|
||||||
|
->rules(['min:0.01'])
|
||||||
|
->disabled(fn($record) => !is_null($record)),
|
||||||
|
|
||||||
|
DatePicker::make('supplied_at')
|
||||||
|
->label('Lieferdatum')
|
||||||
|
->default(now())
|
||||||
|
->required(),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function table(Table $table): Table
|
||||||
|
{
|
||||||
|
return $table
|
||||||
|
->columns([
|
||||||
|
TextColumn::make('spice.name')->label('Rohstoff')->searchable(),
|
||||||
|
TextColumn::make('supplier.name')->label('Lieferant')->searchable(),
|
||||||
|
TextColumn::make('amount')->label('Liefermenge'),
|
||||||
|
TextColumn::make('supplied_at')->label('Lieferdatum')->date('d.m.Y'), // Lieferdatum in der Tabelle anzeigen
|
||||||
|
])
|
||||||
|
->actions([
|
||||||
|
Tables\Actions\EditAction::make(),
|
||||||
|
])
|
||||||
|
->bulkActions([
|
||||||
|
Tables\Actions\DeleteBulkAction::make(),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected static function getTableActions(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
DeleteAction::make()
|
||||||
|
->before(function ($record, DeleteAction $action) {
|
||||||
|
// Custom check logic
|
||||||
|
|
||||||
|
if (true) {
|
||||||
|
// Notify user about the restriction
|
||||||
|
Notification::make()
|
||||||
|
->title('Deletion Error')
|
||||||
|
->body("This record cannot be deleted because it has related records.")
|
||||||
|
->status('danger')
|
||||||
|
->send();
|
||||||
|
|
||||||
|
// Cancel the deletion
|
||||||
|
$action->cancel();
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getRelations(): array
|
||||||
|
{
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getPages(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'index' => Pages\ListSpiceSuppliers::route('/'),
|
||||||
|
'create' => Pages\CreateSpiceSupplier::route('/create'),
|
||||||
|
'edit' => Pages\EditSpiceSupplier::route('/{record}/edit'),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
public static function getPluralLabel(): string
|
||||||
|
{
|
||||||
|
return 'Rohstofflieferungen';
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\SpiceSupplierResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\SpiceSupplierResource;
|
||||||
|
use Filament\Resources\Pages\CreateRecord;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
use App\Models\Spice;
|
||||||
|
|
||||||
|
class CreateSpiceSupplier extends CreateRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = SpiceSupplierResource::class;
|
||||||
|
|
||||||
|
protected function handleRecordCreation(array $data): Model {
|
||||||
|
$record = static::getModel()::create($data);
|
||||||
|
|
||||||
|
Spice::findOrFail($data['spice_id'])->increment('quantity', $data['amount']);
|
||||||
|
return $record;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\SpiceSupplierResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\SpiceSupplierResource;
|
||||||
|
use Filament\Resources\Pages\EditRecord;
|
||||||
|
use Filament\Notifications\Notification;
|
||||||
|
use App\Models\Spice;
|
||||||
|
|
||||||
|
class EditSpiceSupplier extends EditRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = SpiceSupplierResource::class;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
protected function getHeaderActions(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
\Filament\Actions\DeleteAction::make()->before(function ($record) {
|
||||||
|
if (!$record->spice || $record->spice->quantity < $record->amount) {
|
||||||
|
Notification::make()
|
||||||
|
->warning()
|
||||||
|
->title('Fehler!')
|
||||||
|
->body('Nicht mehr genügend ' . htmlentities($record->spice->name) . ' im Lager (bräuchte mindestens Liefermenge um Lieferung rückgängig zu machen)')
|
||||||
|
->send();
|
||||||
|
$this->halt();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
Spice::findOrFail($record->spice->id)->decrement('quantity', $record->amount);
|
||||||
|
}),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\SpiceSupplierResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\SpiceSupplierResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\ListRecords;
|
||||||
|
|
||||||
|
class ListSpiceSuppliers extends ListRecords
|
||||||
|
{
|
||||||
|
protected static string $resource = SpiceSupplierResource::class;
|
||||||
|
|
||||||
|
protected function getHeaderActions(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
Actions\CreateAction::make(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,83 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\SupplierResource\Pages;
|
||||||
|
use App\Filament\User\Resources\SupplierResource\RelationManagers;
|
||||||
|
use App\Models\Supplier;
|
||||||
|
use Filament\Forms;
|
||||||
|
use Filament\Forms\Form;
|
||||||
|
use Filament\Resources\Resource;
|
||||||
|
use Filament\Tables;
|
||||||
|
use Filament\Tables\Table;
|
||||||
|
use Illuminate\Database\Eloquent\Builder;
|
||||||
|
use Illuminate\Database\Eloquent\SoftDeletingScope;
|
||||||
|
|
||||||
|
class SupplierResource extends Resource
|
||||||
|
{
|
||||||
|
protected static ?string $model = Supplier::class;
|
||||||
|
|
||||||
|
protected static ?string $navigationIcon = 'heroicon-o-user';
|
||||||
|
protected static ?string $navigationLabel = 'Lieferanten';
|
||||||
|
protected static ?string $modelLabel = 'Lieferant';
|
||||||
|
protected static ?string $slug = 'lieferant';
|
||||||
|
protected static ?string $navigationGroup = 'CRM';
|
||||||
|
|
||||||
|
public static function form(Form $form): Form
|
||||||
|
{
|
||||||
|
return $form
|
||||||
|
->schema([
|
||||||
|
Forms\Components\TextInput::make('name')
|
||||||
|
->required()
|
||||||
|
->maxLength(255),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function table(Table $table): Table
|
||||||
|
{
|
||||||
|
return $table
|
||||||
|
->columns([
|
||||||
|
Tables\Columns\TextColumn::make('name')
|
||||||
|
->searchable(),
|
||||||
|
Tables\Columns\TextColumn::make('created_at')
|
||||||
|
->dateTime()
|
||||||
|
->sortable()
|
||||||
|
->toggleable(isToggledHiddenByDefault: true),
|
||||||
|
Tables\Columns\TextColumn::make('updated_at')
|
||||||
|
->dateTime()
|
||||||
|
->sortable()
|
||||||
|
->toggleable(isToggledHiddenByDefault: true),
|
||||||
|
])
|
||||||
|
->filters([
|
||||||
|
//
|
||||||
|
])
|
||||||
|
->actions([
|
||||||
|
Tables\Actions\EditAction::make(),
|
||||||
|
])
|
||||||
|
->bulkActions([
|
||||||
|
Tables\Actions\BulkActionGroup::make([
|
||||||
|
Tables\Actions\DeleteBulkAction::make(),
|
||||||
|
]),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getRelations(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
//
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getPages(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'index' => Pages\ListSuppliers::route('/'),
|
||||||
|
'create' => Pages\CreateSupplier::route('/create'),
|
||||||
|
'edit' => Pages\EditSupplier::route('/{record}/edit'),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
public static function getPluralLabel(): string
|
||||||
|
{
|
||||||
|
return 'Lieferanten';
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\SupplierResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\SupplierResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\CreateRecord;
|
||||||
|
|
||||||
|
class CreateSupplier extends CreateRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = SupplierResource::class;
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\SupplierResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\SupplierResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\EditRecord;
|
||||||
|
|
||||||
|
class EditSupplier extends EditRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = SupplierResource::class;
|
||||||
|
|
||||||
|
protected function getHeaderActions(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
Actions\DeleteAction::make(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\User\Resources\SupplierResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\User\Resources\SupplierResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\ListRecords;
|
||||||
|
|
||||||
|
class ListSuppliers extends ListRecords
|
||||||
|
{
|
||||||
|
protected static string $resource = SupplierResource::class;
|
||||||
|
|
||||||
|
protected function getHeaderActions(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
Actions\CreateAction::make(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\Widgets;
|
||||||
|
|
||||||
|
use App\Models\Product;
|
||||||
|
use App\Models\ProductInventory;
|
||||||
|
use App\Models\Spice;
|
||||||
|
use Filament\Widgets\StatsOverviewWidget as BaseWidget;
|
||||||
|
use Filament\Widgets\StatsOverviewWidget\Stat;
|
||||||
|
|
||||||
|
class StatsOverview extends BaseWidget {
|
||||||
|
protected function getStats(): array {
|
||||||
|
return [
|
||||||
|
Stat::make('Produkte', Product::count())->description('angelegt'),
|
||||||
|
Stat::make('Inventar', ProductInventory::count())->description('Produkte'),
|
||||||
|
Stat::make('Rohstoffe', Spice::count())->description('angelegt'),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Http\Controllers\Api;
|
||||||
|
|
||||||
|
use App\Http\Controllers\Controller;
|
||||||
|
use App\Http\Resources\LotResource;
|
||||||
|
use App\Models\Batch;
|
||||||
|
use Illuminate\Http\JsonResponse;
|
||||||
|
|
||||||
|
class LotController extends Controller
|
||||||
|
{
|
||||||
|
public function show(string $lotNumber): LotResource|JsonResponse
|
||||||
|
{
|
||||||
|
$batch = Batch::with([
|
||||||
|
'product',
|
||||||
|
'recipe.spices',
|
||||||
|
'origins.spice',
|
||||||
|
'origins.supplier',
|
||||||
|
])->where('lot_number', $lotNumber)->first();
|
||||||
|
|
||||||
|
if (! $batch) {
|
||||||
|
return response()->json(['error' => 'LOT-Nummer nicht gefunden.'], 404);
|
||||||
|
}
|
||||||
|
|
||||||
|
return new LotResource($batch);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
|
abstract class Controller
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Http\Resources;
|
||||||
|
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Http\Resources\Json\JsonResource;
|
||||||
|
|
||||||
|
class LotResource extends JsonResource
|
||||||
|
{
|
||||||
|
public function toArray(Request $request): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'lot_number' => $this->lot_number,
|
||||||
|
'produced_at' => $this->produced_at?->toDateString(),
|
||||||
|
'expires_at' => $this->expires_at?->toDateString(),
|
||||||
|
'product' => [
|
||||||
|
'name' => $this->product->title,
|
||||||
|
'description' => $this->product->description,
|
||||||
|
],
|
||||||
|
'recipe' => [
|
||||||
|
'name' => $this->recipe->name,
|
||||||
|
],
|
||||||
|
'spices' => $this->recipe->spices->map(function ($spice) {
|
||||||
|
$origin = $this->origins->firstWhere('spice_id', $spice->id);
|
||||||
|
|
||||||
|
return [
|
||||||
|
'name' => $spice->name,
|
||||||
|
'percentage' => (float) $spice->pivot->amount_in_percent,
|
||||||
|
'origin' => $origin ? [
|
||||||
|
'country' => $origin->origin_country,
|
||||||
|
'farmer' => $origin->farmer,
|
||||||
|
'supplier' => $origin->supplier?->name,
|
||||||
|
'notes' => $origin->notes,
|
||||||
|
] : null,
|
||||||
|
];
|
||||||
|
})->values(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class Batch extends Model
|
||||||
|
{
|
||||||
|
protected $fillable = ['lot_number', 'product_id', 'recipe_id', 'produced_at', 'expires_at'];
|
||||||
|
|
||||||
|
protected $casts = [
|
||||||
|
'produced_at' => 'date',
|
||||||
|
'expires_at' => 'date',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function product()
|
||||||
|
{
|
||||||
|
return $this->belongsTo(Product::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function recipe()
|
||||||
|
{
|
||||||
|
return $this->belongsTo(Recipe::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function origins()
|
||||||
|
{
|
||||||
|
return $this->hasMany(BatchOrigin::class);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class BatchOrigin extends Model
|
||||||
|
{
|
||||||
|
protected $fillable = ['batch_id', 'spice_id', 'supplier_id', 'origin_country', 'farmer', 'notes'];
|
||||||
|
|
||||||
|
public function batch()
|
||||||
|
{
|
||||||
|
return $this->belongsTo(Batch::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function spice()
|
||||||
|
{
|
||||||
|
return $this->belongsTo(Spice::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function supplier()
|
||||||
|
{
|
||||||
|
return $this->belongsTo(Supplier::class);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class Packing extends Model
|
||||||
|
{
|
||||||
|
use HasFactory;
|
||||||
|
protected $fillable = ['name', 'size'];
|
||||||
|
|
||||||
|
public function products() {
|
||||||
|
return $this->belongsToMany(Product::class, 'products_sizes')
|
||||||
|
->withPivot('price')
|
||||||
|
->withPivot('description')
|
||||||
|
->withTimestamps();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class Product extends Model
|
||||||
|
{
|
||||||
|
protected $fillable = ['title', 'description', 'images', 'package_content', 'recipes_id'];
|
||||||
|
|
||||||
|
protected $casts = [
|
||||||
|
'images' => 'array',
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
|
public function recipe()
|
||||||
|
{
|
||||||
|
return $this->belongsTo(Recipe::class, 'recipes_id');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function sizes()
|
||||||
|
{
|
||||||
|
return $this->belongsToMany(Packing::class, 'products_sizes')
|
||||||
|
->withPivot('price')
|
||||||
|
->withPivot('description')
|
||||||
|
->withTimestamps();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function inventories()
|
||||||
|
{
|
||||||
|
return $this->hasMany(ProductInventory::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function batches()
|
||||||
|
{
|
||||||
|
return $this->hasMany(Batch::class);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class ProductInventory extends Model
|
||||||
|
{
|
||||||
|
protected $fillable = ['product_id', 'size_id', 'out_at'];
|
||||||
|
protected $table = 'products_inventory';
|
||||||
|
|
||||||
|
public function product()
|
||||||
|
{
|
||||||
|
return $this->belongsTo(product::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function size()
|
||||||
|
{
|
||||||
|
return $this->belongsTo(ProductSize::class);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class ProductSale extends Model
|
||||||
|
{
|
||||||
|
protected $table = 'products_sales';
|
||||||
|
|
||||||
|
protected $fillable = [
|
||||||
|
'product_id',
|
||||||
|
'size_id',
|
||||||
|
'amount',
|
||||||
|
'sold_at',
|
||||||
|
];
|
||||||
|
|
||||||
|
// Beziehungen
|
||||||
|
public function product()
|
||||||
|
{
|
||||||
|
return $this->belongsTo(Product::class);
|
||||||
|
}
|
||||||
|
public function size()
|
||||||
|
{
|
||||||
|
return $this->belongsTo(ProductSize::class);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class ProductSize extends Model
|
||||||
|
{
|
||||||
|
use HasFactory;
|
||||||
|
protected $table = 'products_sizes';
|
||||||
|
protected $fillable = ['product_id', 'packing_id', 'sku', 'price', 'description'];
|
||||||
|
|
||||||
|
public function product() {
|
||||||
|
return $this->belongsTo(Product::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function packing() {
|
||||||
|
return $this->belongsTo(Packing::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function inventories() {
|
||||||
|
return $this->hasMany(ProductInventory::class);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class Recipe extends Model
|
||||||
|
{
|
||||||
|
use HasFactory;
|
||||||
|
|
||||||
|
protected $fillable = ['name', 'description'];
|
||||||
|
|
||||||
|
public function spices()
|
||||||
|
{
|
||||||
|
return $this->belongsToMany(Spice::class, 'recipes_spices')
|
||||||
|
->withPivot('amount_in_percent')
|
||||||
|
->withTimestamps();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class RecipeSpice extends Model
|
||||||
|
{
|
||||||
|
use HasFactory;
|
||||||
|
protected $table = 'recipes_spices';
|
||||||
|
protected $fillable = ['recipe_id', 'spice_id', 'amount_in_percent'];
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class Spice extends Model
|
||||||
|
{
|
||||||
|
protected $fillable = ['name', 'quantity', 'unit'];
|
||||||
|
|
||||||
|
public function recipes()
|
||||||
|
{
|
||||||
|
return $this->belongsToMany(Recipe::class, 'recipes_spices')
|
||||||
|
->withPivot('amount_in_percent')
|
||||||
|
->withTimestamps();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class SpiceSupplier extends Model
|
||||||
|
{
|
||||||
|
use HasFactory;
|
||||||
|
|
||||||
|
protected $table = 'spices_suppliers'; // explizit, weil der Standard sonst 'spice_suppliers' wäre
|
||||||
|
|
||||||
|
protected $fillable = [
|
||||||
|
'spice_id',
|
||||||
|
'supplier_id',
|
||||||
|
'amount',
|
||||||
|
'supplied_at',
|
||||||
|
];
|
||||||
|
|
||||||
|
// Beziehungen
|
||||||
|
public function spice()
|
||||||
|
{
|
||||||
|
return $this->belongsTo(Spice::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function supplier()
|
||||||
|
{
|
||||||
|
return $this->belongsTo(Supplier::class);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class Supplier extends Model
|
||||||
|
{
|
||||||
|
use HasFactory;
|
||||||
|
protected $fillable = ['name'];
|
||||||
|
|
||||||
|
public function spiceSuppliers()
|
||||||
|
{
|
||||||
|
return $this->hasMany(SpiceSupplier::class);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,53 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
use Filament\Models\Contracts\FilamentUser;
|
||||||
|
use Filament\Panel;
|
||||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
||||||
|
use Illuminate\Notifications\Notifiable;
|
||||||
|
|
||||||
|
class User extends Authenticatable implements FilamentUser
|
||||||
|
{
|
||||||
|
use HasFactory, Notifiable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The attributes that are mass assignable.
|
||||||
|
*
|
||||||
|
* @var array<int, string>
|
||||||
|
*/
|
||||||
|
protected $fillable = [
|
||||||
|
'name',
|
||||||
|
'email',
|
||||||
|
'password',
|
||||||
|
];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The attributes that should be hidden for serialization.
|
||||||
|
*
|
||||||
|
* @var array<int, string>
|
||||||
|
*/
|
||||||
|
protected $hidden = [
|
||||||
|
'password',
|
||||||
|
'remember_token',
|
||||||
|
];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the attributes that should be cast.
|
||||||
|
*
|
||||||
|
* @return array<string, string>
|
||||||
|
*/
|
||||||
|
protected function casts(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'email_verified_at' => 'datetime',
|
||||||
|
'password' => 'hashed',
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function canAccessPanel(Panel $panel): bool
|
||||||
|
{
|
||||||
|
return true; // allow all authenticated users access to the dashboard
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Observers;
|
||||||
|
|
||||||
|
use App\Models\Product;
|
||||||
|
|
||||||
|
class ProductObserver
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Handle the Product "created" event.
|
||||||
|
*/
|
||||||
|
public function created(Product $product): void
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle the Product "updated" event.
|
||||||
|
*/
|
||||||
|
public function updated(Product $product): void
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle the Product "deleted" event.
|
||||||
|
*/
|
||||||
|
public function deleted(Product $product): void
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle the Product "restored" event.
|
||||||
|
*/
|
||||||
|
public function restored(Product $product): void
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle the Product "force deleted" event.
|
||||||
|
*/
|
||||||
|
public function forceDeleted(Product $product): void
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Policies;
|
||||||
|
|
||||||
|
use App\Models\User;
|
||||||
|
use App\Models\ProductSale;
|
||||||
|
|
||||||
|
class ProductSalePolicy {
|
||||||
|
public function delete(User $user, ProductSale $productsale) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Policies;
|
||||||
|
|
||||||
|
use App\Models\User;
|
||||||
|
use App\Models\SpiceSupplier;
|
||||||
|
|
||||||
|
class SpiceSupplierPolicy {
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Providers;
|
||||||
|
|
||||||
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
use App\Models\Product; // Richtiges Product-Model importieren
|
||||||
|
use App\Observers\ProductObserver; // ProductObserver importieren
|
||||||
|
|
||||||
|
class AppServiceProvider extends ServiceProvider
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Register any application services.
|
||||||
|
*/
|
||||||
|
public function register(): void
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bootstrap any application services.
|
||||||
|
*/
|
||||||
|
public function boot(): void
|
||||||
|
{
|
||||||
|
Product::observe(ProductObserver::class);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,72 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Providers\Filament;
|
||||||
|
|
||||||
|
use Filament\Http\Middleware\Authenticate;
|
||||||
|
use Filament\Http\Middleware\DisableBladeIconComponents;
|
||||||
|
use Filament\Http\Middleware\DispatchServingFilamentEvent;
|
||||||
|
use Filament\Pages;
|
||||||
|
use Filament\Panel;
|
||||||
|
use Filament\PanelProvider;
|
||||||
|
use Filament\Support\Colors\Color;
|
||||||
|
use Filament\Widgets;
|
||||||
|
use Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse;
|
||||||
|
use Illuminate\Cookie\Middleware\EncryptCookies;
|
||||||
|
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken;
|
||||||
|
use Illuminate\Routing\Middleware\SubstituteBindings;
|
||||||
|
use Illuminate\Session\Middleware\AuthenticateSession;
|
||||||
|
use Illuminate\Session\Middleware\StartSession;
|
||||||
|
use Illuminate\View\Middleware\ShareErrorsFromSession;
|
||||||
|
use App\Filament\Widgets\StatsOverview;
|
||||||
|
use App\Filament\User\Resources\ProductSaleResource\Widgets\SalesChart;
|
||||||
|
use App\Filament\User\Resources\SpiceResource\Widgets\SpiceChart;
|
||||||
|
use Leandrocfe\FilamentApexCharts\FilamentApexChartsPlugin;
|
||||||
|
|
||||||
|
class UserPanelProvider extends PanelProvider
|
||||||
|
{
|
||||||
|
public function panel(Panel $panel): Panel
|
||||||
|
{
|
||||||
|
return $panel
|
||||||
|
->id('user')
|
||||||
|
->default()
|
||||||
|
->path('dashboard')
|
||||||
|
->font('Jost')
|
||||||
|
->login()
|
||||||
|
->colors([
|
||||||
|
'primary' => '#33ccff'
|
||||||
|
])
|
||||||
|
->favicon(url:'../images/favicon.png')
|
||||||
|
|
||||||
|
->discoverResources(in: app_path('Filament/User/Resources'), for: 'App\\Filament\\User\\Resources')
|
||||||
|
->discoverPages(in: app_path('Filament/User/Pages'), for: 'App\\Filament\\User\\Pages')
|
||||||
|
->pages([
|
||||||
|
Pages\Dashboard::class,
|
||||||
|
])
|
||||||
|
->plugins([
|
||||||
|
FilamentApexChartsPlugin::make()
|
||||||
|
])
|
||||||
|
->discoverWidgets(in: app_path('Filament/User/Widgets'), for: 'App\\Filament\\User\\Widgets')
|
||||||
|
->widgets([
|
||||||
|
StatsOverview::class,
|
||||||
|
SalesChart::class,
|
||||||
|
SpiceChart::class,
|
||||||
|
])
|
||||||
|
->middleware([
|
||||||
|
EncryptCookies::class,
|
||||||
|
AddQueuedCookiesToResponse::class,
|
||||||
|
StartSession::class,
|
||||||
|
AuthenticateSession::class,
|
||||||
|
ShareErrorsFromSession::class,
|
||||||
|
VerifyCsrfToken::class,
|
||||||
|
SubstituteBindings::class,
|
||||||
|
DisableBladeIconComponents::class,
|
||||||
|
DispatchServingFilamentEvent::class,
|
||||||
|
])
|
||||||
|
->authMiddleware([
|
||||||
|
Authenticate::class,
|
||||||
|
])
|
||||||
|
->resources([
|
||||||
|
config('filament-logger.activity_resource')
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Rules;
|
||||||
|
use Illuminate\Contracts\Validation\Rule;
|
||||||
|
|
||||||
|
class SumEquals100 implements Rule {
|
||||||
|
public function passes($attribute, $value) {
|
||||||
|
$sum = collect($value)->sum('amount_in_percent');
|
||||||
|
return $sum == 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function message() {
|
||||||
|
return 'Die Summe aller Zutaten muss exakt 100% entsprechen.';
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
#!/usr/bin/env php
|
||||||
|
<?php
|
||||||
|
|
||||||
|
use Symfony\Component\Console\Input\ArgvInput;
|
||||||
|
|
||||||
|
define('LARAVEL_START', microtime(true));
|
||||||
|
|
||||||
|
// Register the Composer autoloader...
|
||||||
|
require __DIR__.'/vendor/autoload.php';
|
||||||
|
|
||||||
|
// Bootstrap Laravel and handle the command...
|
||||||
|
$status = (require_once __DIR__.'/bootstrap/app.php')
|
||||||
|
->handleCommand(new ArgvInput);
|
||||||
|
|
||||||
|
exit($status);
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Foundation\Application;
|
||||||
|
use Illuminate\Foundation\Configuration\Exceptions;
|
||||||
|
use Illuminate\Foundation\Configuration\Middleware;
|
||||||
|
|
||||||
|
return Application::configure(basePath: dirname(__DIR__))
|
||||||
|
->withRouting(
|
||||||
|
web: __DIR__.'/../routes/web.php',
|
||||||
|
api: __DIR__.'/../routes/api.php',
|
||||||
|
commands: __DIR__.'/../routes/console.php',
|
||||||
|
health: '/up',
|
||||||
|
)
|
||||||
|
->withMiddleware(function (Middleware $middleware) {
|
||||||
|
//
|
||||||
|
})
|
||||||
|
->withExceptions(function (Exceptions $exceptions) {
|
||||||
|
//
|
||||||
|
})->create();
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
*
|
||||||
|
!.gitignore
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
App\Providers\AppServiceProvider::class,
|
||||||
|
App\Providers\Filament\UserPanelProvider::class,
|
||||||
|
];
|
||||||
@@ -0,0 +1,75 @@
|
|||||||
|
{
|
||||||
|
"name": "laravel/laravel",
|
||||||
|
"type": "project",
|
||||||
|
"description": "The skeleton application for the Laravel framework.",
|
||||||
|
"keywords": ["laravel", "framework"],
|
||||||
|
"license": "MIT",
|
||||||
|
"require": {
|
||||||
|
"php": "^8.2",
|
||||||
|
"filament/filament": "^3.2",
|
||||||
|
"flowframe/laravel-trend": "^0.3.0",
|
||||||
|
"laravel/framework": "^11.9",
|
||||||
|
"laravel/tinker": "^2.9",
|
||||||
|
"leandrocfe/filament-apex-charts": "^3.1",
|
||||||
|
"spatie/laravel-activitylog": "^4.9",
|
||||||
|
"z3d0x/filament-logger": "^0.7.2"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"fakerphp/faker": "^1.23",
|
||||||
|
"laravel/pint": "^1.13",
|
||||||
|
"laravel/sail": "^1.26",
|
||||||
|
"mockery/mockery": "^1.6",
|
||||||
|
"nunomaduro/collision": "^8.0",
|
||||||
|
"phpunit/phpunit": "^11.0.1"
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"App\\": "app/",
|
||||||
|
"Database\\Factories\\": "database/factories/",
|
||||||
|
"Database\\Seeders\\": "database/seeders/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload-dev": {
|
||||||
|
"psr-4": {
|
||||||
|
"Tests\\": "tests/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"post-autoload-dump": [
|
||||||
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
||||||
|
"@php artisan package:discover --ansi",
|
||||||
|
"@php artisan filament:upgrade"
|
||||||
|
],
|
||||||
|
"post-update-cmd": [
|
||||||
|
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
|
||||||
|
],
|
||||||
|
"post-root-package-install": [
|
||||||
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
||||||
|
],
|
||||||
|
"post-create-project-cmd": [
|
||||||
|
"@php artisan key:generate --ansi",
|
||||||
|
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
|
||||||
|
"@php artisan migrate --graceful --ansi"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"laravel": {
|
||||||
|
"dont-discover": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"config": {
|
||||||
|
"optimize-autoloader": true,
|
||||||
|
"preferred-install": "dist",
|
||||||
|
"sort-packages": true,
|
||||||
|
"allow-plugins": {
|
||||||
|
"pestphp/pest-plugin": true,
|
||||||
|
"php-http/discovery": true
|
||||||
|
},
|
||||||
|
"audit": {
|
||||||
|
"abandoned": "ignore",
|
||||||
|
"block-insecure": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimum-stability": "stable",
|
||||||
|
"prefer-stable": true
|
||||||
|
}
|
||||||
Generated
+10223
File diff suppressed because it is too large
Load Diff
+126
@@ -0,0 +1,126 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Application Name
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This value is the name of your application, which will be used when the
|
||||||
|
| framework needs to place the application's name in a notification or
|
||||||
|
| other UI elements where an application name needs to be displayed.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'name' => env('APP_NAME', 'Laravel'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Application Environment
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This value determines the "environment" your application is currently
|
||||||
|
| running in. This may determine how you prefer to configure various
|
||||||
|
| services the application utilizes. Set this in your ".env" file.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'env' => env('APP_ENV', 'production'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Application Debug Mode
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| When your application is in debug mode, detailed error messages with
|
||||||
|
| stack traces will be shown on every error that occurs within your
|
||||||
|
| application. If disabled, a simple generic error page is shown.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'debug' => (bool) env('APP_DEBUG', false),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Application URL
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This URL is used by the console to properly generate URLs when using
|
||||||
|
| the Artisan command line tool. You should set this to the root of
|
||||||
|
| the application so that it's available within Artisan commands.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'url' => env('APP_URL', 'http://localhost'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Application Timezone
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may specify the default timezone for your application, which
|
||||||
|
| will be used by the PHP date and date-time functions. The timezone
|
||||||
|
| is set to "UTC" by default as it is suitable for most use cases.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'timezone' => env('APP_TIMEZONE', 'UTC'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Application Locale Configuration
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| The application locale determines the default locale that will be used
|
||||||
|
| by Laravel's translation / localization methods. This option can be
|
||||||
|
| set to any locale for which you plan to have translation strings.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'locale' => env('APP_LOCALE', 'en'),
|
||||||
|
|
||||||
|
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
|
||||||
|
|
||||||
|
'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Encryption Key
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This key is utilized by Laravel's encryption services and should be set
|
||||||
|
| to a random, 32 character string to ensure that all encrypted values
|
||||||
|
| are secure. You should do this prior to deploying the application.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'cipher' => 'AES-256-CBC',
|
||||||
|
|
||||||
|
'key' => env('APP_KEY'),
|
||||||
|
|
||||||
|
'previous_keys' => [
|
||||||
|
...array_filter(
|
||||||
|
explode(',', env('APP_PREVIOUS_KEYS', ''))
|
||||||
|
),
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Maintenance Mode Driver
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| These configuration options determine the driver used to determine and
|
||||||
|
| manage Laravel's "maintenance mode" status. The "cache" driver will
|
||||||
|
| allow maintenance mode to be controlled across multiple machines.
|
||||||
|
|
|
||||||
|
| Supported drivers: "file", "cache"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'maintenance' => [
|
||||||
|
'driver' => env('APP_MAINTENANCE_DRIVER', 'file'),
|
||||||
|
'store' => env('APP_MAINTENANCE_STORE', 'database'),
|
||||||
|
],
|
||||||
|
|
||||||
|
];
|
||||||
+115
@@ -0,0 +1,115 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Authentication Defaults
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This option defines the default authentication "guard" and password
|
||||||
|
| reset "broker" for your application. You may change these values
|
||||||
|
| as required, but they're a perfect start for most applications.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'defaults' => [
|
||||||
|
'guard' => env('AUTH_GUARD', 'web'),
|
||||||
|
'passwords' => env('AUTH_PASSWORD_BROKER', 'users'),
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Authentication Guards
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Next, you may define every authentication guard for your application.
|
||||||
|
| Of course, a great default configuration has been defined for you
|
||||||
|
| which utilizes session storage plus the Eloquent user provider.
|
||||||
|
|
|
||||||
|
| All authentication guards have a user provider, which defines how the
|
||||||
|
| users are actually retrieved out of your database or other storage
|
||||||
|
| system used by the application. Typically, Eloquent is utilized.
|
||||||
|
|
|
||||||
|
| Supported: "session"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'guards' => [
|
||||||
|
'web' => [
|
||||||
|
'driver' => 'session',
|
||||||
|
'provider' => 'users',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| User Providers
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| All authentication guards have a user provider, which defines how the
|
||||||
|
| users are actually retrieved out of your database or other storage
|
||||||
|
| system used by the application. Typically, Eloquent is utilized.
|
||||||
|
|
|
||||||
|
| If you have multiple user tables or models you may configure multiple
|
||||||
|
| providers to represent the model / table. These providers may then
|
||||||
|
| be assigned to any extra authentication guards you have defined.
|
||||||
|
|
|
||||||
|
| Supported: "database", "eloquent"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'providers' => [
|
||||||
|
'users' => [
|
||||||
|
'driver' => 'eloquent',
|
||||||
|
'model' => env('AUTH_MODEL', App\Models\User::class),
|
||||||
|
],
|
||||||
|
|
||||||
|
// 'users' => [
|
||||||
|
// 'driver' => 'database',
|
||||||
|
// 'table' => 'users',
|
||||||
|
// ],
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Resetting Passwords
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| These configuration options specify the behavior of Laravel's password
|
||||||
|
| reset functionality, including the table utilized for token storage
|
||||||
|
| and the user provider that is invoked to actually retrieve users.
|
||||||
|
|
|
||||||
|
| The expiry time is the number of minutes that each reset token will be
|
||||||
|
| considered valid. This security feature keeps tokens short-lived so
|
||||||
|
| they have less time to be guessed. You may change this as needed.
|
||||||
|
|
|
||||||
|
| The throttle setting is the number of seconds a user must wait before
|
||||||
|
| generating more password reset tokens. This prevents the user from
|
||||||
|
| quickly generating a very large amount of password reset tokens.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'passwords' => [
|
||||||
|
'users' => [
|
||||||
|
'provider' => 'users',
|
||||||
|
'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'),
|
||||||
|
'expire' => 60,
|
||||||
|
'throttle' => 60,
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Password Confirmation Timeout
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may define the amount of seconds before a password confirmation
|
||||||
|
| window expires and users are asked to re-enter their password via the
|
||||||
|
| confirmation screen. By default, the timeout lasts for three hours.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800),
|
||||||
|
|
||||||
|
];
|
||||||
@@ -0,0 +1,108 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Support\Str;
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Default Cache Store
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This option controls the default cache store that will be used by the
|
||||||
|
| framework. This connection is utilized if another isn't explicitly
|
||||||
|
| specified when running a cache operation inside the application.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'default' => env('CACHE_STORE', 'database'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Cache Stores
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may define all of the cache "stores" for your application as
|
||||||
|
| well as their drivers. You may even define multiple stores for the
|
||||||
|
| same cache driver to group types of items stored in your caches.
|
||||||
|
|
|
||||||
|
| Supported drivers: "array", "database", "file", "memcached",
|
||||||
|
| "redis", "dynamodb", "octane", "null"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'stores' => [
|
||||||
|
|
||||||
|
'array' => [
|
||||||
|
'driver' => 'array',
|
||||||
|
'serialize' => false,
|
||||||
|
],
|
||||||
|
|
||||||
|
'database' => [
|
||||||
|
'driver' => 'database',
|
||||||
|
'connection' => env('DB_CACHE_CONNECTION'),
|
||||||
|
'table' => env('DB_CACHE_TABLE', 'cache'),
|
||||||
|
'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'),
|
||||||
|
'lock_table' => env('DB_CACHE_LOCK_TABLE'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'file' => [
|
||||||
|
'driver' => 'file',
|
||||||
|
'path' => storage_path('framework/cache/data'),
|
||||||
|
'lock_path' => storage_path('framework/cache/data'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'memcached' => [
|
||||||
|
'driver' => 'memcached',
|
||||||
|
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
|
||||||
|
'sasl' => [
|
||||||
|
env('MEMCACHED_USERNAME'),
|
||||||
|
env('MEMCACHED_PASSWORD'),
|
||||||
|
],
|
||||||
|
'options' => [
|
||||||
|
// Memcached::OPT_CONNECT_TIMEOUT => 2000,
|
||||||
|
],
|
||||||
|
'servers' => [
|
||||||
|
[
|
||||||
|
'host' => env('MEMCACHED_HOST', '127.0.0.1'),
|
||||||
|
'port' => env('MEMCACHED_PORT', 11211),
|
||||||
|
'weight' => 100,
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
'redis' => [
|
||||||
|
'driver' => 'redis',
|
||||||
|
'connection' => env('REDIS_CACHE_CONNECTION', 'cache'),
|
||||||
|
'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'dynamodb' => [
|
||||||
|
'driver' => 'dynamodb',
|
||||||
|
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||||
|
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||||
|
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||||
|
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
|
||||||
|
'endpoint' => env('DYNAMODB_ENDPOINT'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'octane' => [
|
||||||
|
'driver' => 'octane',
|
||||||
|
],
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Cache Key Prefix
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| When utilizing the APC, database, memcached, Redis, and DynamoDB cache
|
||||||
|
| stores, there might be other applications using the same cache. For
|
||||||
|
| that reason, you may prefix every cache key to avoid collisions.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'),
|
||||||
|
|
||||||
|
];
|
||||||
@@ -0,0 +1,173 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Support\Str;
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Default Database Connection Name
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may specify which of the database connections below you wish
|
||||||
|
| to use as your default connection for database operations. This is
|
||||||
|
| the connection which will be utilized unless another connection
|
||||||
|
| is explicitly specified when you execute a query / statement.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'default' => env('DB_CONNECTION', 'sqlite'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Database Connections
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Below are all of the database connections defined for your application.
|
||||||
|
| An example configuration is provided for each database system which
|
||||||
|
| is supported by Laravel. You're free to add / remove connections.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'connections' => [
|
||||||
|
|
||||||
|
'sqlite' => [
|
||||||
|
'driver' => 'sqlite',
|
||||||
|
'url' => env('DB_URL'),
|
||||||
|
'database' => env('DB_DATABASE', database_path('database.sqlite')),
|
||||||
|
'prefix' => '',
|
||||||
|
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
|
||||||
|
'busy_timeout' => null,
|
||||||
|
'journal_mode' => null,
|
||||||
|
'synchronous' => null,
|
||||||
|
],
|
||||||
|
|
||||||
|
'mysql' => [
|
||||||
|
'driver' => 'mysql',
|
||||||
|
'url' => env('DB_URL'),
|
||||||
|
'host' => env('DB_HOST', '127.0.0.1'),
|
||||||
|
'port' => env('DB_PORT', '3306'),
|
||||||
|
'database' => env('DB_DATABASE', 'laravel'),
|
||||||
|
'username' => env('DB_USERNAME', 'root'),
|
||||||
|
'password' => env('DB_PASSWORD', ''),
|
||||||
|
'unix_socket' => env('DB_SOCKET', ''),
|
||||||
|
'charset' => env('DB_CHARSET', 'utf8mb4'),
|
||||||
|
'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
|
||||||
|
'prefix' => '',
|
||||||
|
'prefix_indexes' => true,
|
||||||
|
'strict' => true,
|
||||||
|
'engine' => null,
|
||||||
|
'options' => extension_loaded('pdo_mysql') ? array_filter([
|
||||||
|
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
|
||||||
|
]) : [],
|
||||||
|
],
|
||||||
|
|
||||||
|
'mariadb' => [
|
||||||
|
'driver' => 'mariadb',
|
||||||
|
'url' => env('DB_URL'),
|
||||||
|
'host' => env('DB_HOST', '127.0.0.1'),
|
||||||
|
'port' => env('DB_PORT', '3306'),
|
||||||
|
'database' => env('DB_DATABASE', 'laravel'),
|
||||||
|
'username' => env('DB_USERNAME', 'root'),
|
||||||
|
'password' => env('DB_PASSWORD', ''),
|
||||||
|
'unix_socket' => env('DB_SOCKET', ''),
|
||||||
|
'charset' => env('DB_CHARSET', 'utf8mb4'),
|
||||||
|
'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
|
||||||
|
'prefix' => '',
|
||||||
|
'prefix_indexes' => true,
|
||||||
|
'strict' => true,
|
||||||
|
'engine' => null,
|
||||||
|
'options' => extension_loaded('pdo_mysql') ? array_filter([
|
||||||
|
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
|
||||||
|
]) : [],
|
||||||
|
],
|
||||||
|
|
||||||
|
'pgsql' => [
|
||||||
|
'driver' => 'pgsql',
|
||||||
|
'url' => env('DB_URL'),
|
||||||
|
'host' => env('DB_HOST', '127.0.0.1'),
|
||||||
|
'port' => env('DB_PORT', '5432'),
|
||||||
|
'database' => env('DB_DATABASE', 'laravel'),
|
||||||
|
'username' => env('DB_USERNAME', 'root'),
|
||||||
|
'password' => env('DB_PASSWORD', ''),
|
||||||
|
'charset' => env('DB_CHARSET', 'utf8'),
|
||||||
|
'prefix' => '',
|
||||||
|
'prefix_indexes' => true,
|
||||||
|
'search_path' => 'public',
|
||||||
|
'sslmode' => 'prefer',
|
||||||
|
],
|
||||||
|
|
||||||
|
'sqlsrv' => [
|
||||||
|
'driver' => 'sqlsrv',
|
||||||
|
'url' => env('DB_URL'),
|
||||||
|
'host' => env('DB_HOST', 'localhost'),
|
||||||
|
'port' => env('DB_PORT', '1433'),
|
||||||
|
'database' => env('DB_DATABASE', 'laravel'),
|
||||||
|
'username' => env('DB_USERNAME', 'root'),
|
||||||
|
'password' => env('DB_PASSWORD', ''),
|
||||||
|
'charset' => env('DB_CHARSET', 'utf8'),
|
||||||
|
'prefix' => '',
|
||||||
|
'prefix_indexes' => true,
|
||||||
|
// 'encrypt' => env('DB_ENCRYPT', 'yes'),
|
||||||
|
// 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'),
|
||||||
|
],
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Migration Repository Table
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This table keeps track of all the migrations that have already run for
|
||||||
|
| your application. Using this information, we can determine which of
|
||||||
|
| the migrations on disk haven't actually been run on the database.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'migrations' => [
|
||||||
|
'table' => 'migrations',
|
||||||
|
'update_date_on_publish' => true,
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Redis Databases
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Redis is an open source, fast, and advanced key-value store that also
|
||||||
|
| provides a richer body of commands than a typical key-value system
|
||||||
|
| such as Memcached. You may define your connection settings here.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'redis' => [
|
||||||
|
|
||||||
|
'client' => env('REDIS_CLIENT', 'phpredis'),
|
||||||
|
|
||||||
|
'options' => [
|
||||||
|
'cluster' => env('REDIS_CLUSTER', 'redis'),
|
||||||
|
'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'default' => [
|
||||||
|
'url' => env('REDIS_URL'),
|
||||||
|
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||||
|
'username' => env('REDIS_USERNAME'),
|
||||||
|
'password' => env('REDIS_PASSWORD'),
|
||||||
|
'port' => env('REDIS_PORT', '6379'),
|
||||||
|
'database' => env('REDIS_DB', '0'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'cache' => [
|
||||||
|
'url' => env('REDIS_URL'),
|
||||||
|
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||||
|
'username' => env('REDIS_USERNAME'),
|
||||||
|
'password' => env('REDIS_PASSWORD'),
|
||||||
|
'port' => env('REDIS_PORT', '6379'),
|
||||||
|
'database' => env('REDIS_CACHE_DB', '1'),
|
||||||
|
],
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
|
];
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
<?php
|
||||||
|
return [
|
||||||
|
'datetime_format' => 'd.m.Y H:i:s',
|
||||||
|
'date_format' => 'd.m.Y',
|
||||||
|
|
||||||
|
'activity_resource' => \Z3d0X\FilamentLogger\Resources\ActivityResource::class,
|
||||||
|
|
||||||
|
'resources' => [
|
||||||
|
'enabled' => true,
|
||||||
|
'log_name' => 'Ressource',
|
||||||
|
'logger' => \Z3d0X\FilamentLogger\Loggers\ResourceLogger::class,
|
||||||
|
'color' => 'success',
|
||||||
|
'exclude' => [
|
||||||
|
//App\Filament\Resources\UserResource::class,
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
'access' => [
|
||||||
|
'enabled' => true,
|
||||||
|
'logger' => \Z3d0X\FilamentLogger\Loggers\AccessLogger::class,
|
||||||
|
'color' => 'danger',
|
||||||
|
'log_name' => 'Login',
|
||||||
|
],
|
||||||
|
|
||||||
|
'notifications' => [
|
||||||
|
'enabled' => true,
|
||||||
|
'logger' => \Z3d0X\FilamentLogger\Loggers\NotificationLogger::class,
|
||||||
|
'color' => null,
|
||||||
|
'log_name' => 'Benachrichtigung',
|
||||||
|
],
|
||||||
|
|
||||||
|
'models' => [
|
||||||
|
'enabled' => true,
|
||||||
|
'log_name' => 'Model',
|
||||||
|
'color' => 'warning',
|
||||||
|
'logger' => \Z3d0X\FilamentLogger\Loggers\ModelLogger::class,
|
||||||
|
'register' => [
|
||||||
|
//App\Models\User::class,
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
'custom' => [
|
||||||
|
// [
|
||||||
|
// 'log_name' => 'Custom',
|
||||||
|
// 'color' => 'primary',
|
||||||
|
// ]
|
||||||
|
],
|
||||||
|
];
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Default Filesystem Disk
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may specify the default filesystem disk that should be used
|
||||||
|
| by the framework. The "local" disk, as well as a variety of cloud
|
||||||
|
| based disks are available to your application for file storage.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'default' => env('FILESYSTEM_DISK', 'local'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Filesystem Disks
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Below you may configure as many filesystem disks as necessary, and you
|
||||||
|
| may even configure multiple disks for the same driver. Examples for
|
||||||
|
| most supported storage drivers are configured here for reference.
|
||||||
|
|
|
||||||
|
| Supported drivers: "local", "ftp", "sftp", "s3"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'disks' => [
|
||||||
|
|
||||||
|
'local' => [
|
||||||
|
'driver' => 'local',
|
||||||
|
'root' => storage_path('app/private'),
|
||||||
|
'serve' => true,
|
||||||
|
'throw' => false,
|
||||||
|
],
|
||||||
|
|
||||||
|
'public' => [
|
||||||
|
'driver' => 'local',
|
||||||
|
'root' => storage_path('app/public'),
|
||||||
|
'url' => env('APP_URL').'/storage',
|
||||||
|
'visibility' => 'public',
|
||||||
|
'throw' => false,
|
||||||
|
],
|
||||||
|
|
||||||
|
's3' => [
|
||||||
|
'driver' => 's3',
|
||||||
|
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||||
|
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||||
|
'region' => env('AWS_DEFAULT_REGION'),
|
||||||
|
'bucket' => env('AWS_BUCKET'),
|
||||||
|
'url' => env('AWS_URL'),
|
||||||
|
'endpoint' => env('AWS_ENDPOINT'),
|
||||||
|
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
|
||||||
|
'throw' => false,
|
||||||
|
],
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Symbolic Links
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may configure the symbolic links that will be created when the
|
||||||
|
| `storage:link` Artisan command is executed. The array keys should be
|
||||||
|
| the locations of the links and the values should be their targets.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'links' => [
|
||||||
|
public_path('storage') => storage_path('app/public'),
|
||||||
|
],
|
||||||
|
|
||||||
|
];
|
||||||
@@ -0,0 +1,132 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Monolog\Handler\NullHandler;
|
||||||
|
use Monolog\Handler\StreamHandler;
|
||||||
|
use Monolog\Handler\SyslogUdpHandler;
|
||||||
|
use Monolog\Processor\PsrLogMessageProcessor;
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Default Log Channel
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This option defines the default log channel that is utilized to write
|
||||||
|
| messages to your logs. The value provided here should match one of
|
||||||
|
| the channels present in the list of "channels" configured below.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'default' => env('LOG_CHANNEL', 'stack'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Deprecations Log Channel
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This option controls the log channel that should be used to log warnings
|
||||||
|
| regarding deprecated PHP and library features. This allows you to get
|
||||||
|
| your application ready for upcoming major versions of dependencies.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'deprecations' => [
|
||||||
|
'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
|
||||||
|
'trace' => env('LOG_DEPRECATIONS_TRACE', false),
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Log Channels
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may configure the log channels for your application. Laravel
|
||||||
|
| utilizes the Monolog PHP logging library, which includes a variety
|
||||||
|
| of powerful log handlers and formatters that you're free to use.
|
||||||
|
|
|
||||||
|
| Available drivers: "single", "daily", "slack", "syslog",
|
||||||
|
| "errorlog", "monolog", "custom", "stack"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'channels' => [
|
||||||
|
|
||||||
|
'stack' => [
|
||||||
|
'driver' => 'stack',
|
||||||
|
'channels' => explode(',', env('LOG_STACK', 'single')),
|
||||||
|
'ignore_exceptions' => false,
|
||||||
|
],
|
||||||
|
|
||||||
|
'single' => [
|
||||||
|
'driver' => 'single',
|
||||||
|
'path' => storage_path('logs/laravel.log'),
|
||||||
|
'level' => env('LOG_LEVEL', 'debug'),
|
||||||
|
'replace_placeholders' => true,
|
||||||
|
],
|
||||||
|
|
||||||
|
'daily' => [
|
||||||
|
'driver' => 'daily',
|
||||||
|
'path' => storage_path('logs/laravel.log'),
|
||||||
|
'level' => env('LOG_LEVEL', 'debug'),
|
||||||
|
'days' => env('LOG_DAILY_DAYS', 14),
|
||||||
|
'replace_placeholders' => true,
|
||||||
|
],
|
||||||
|
|
||||||
|
'slack' => [
|
||||||
|
'driver' => 'slack',
|
||||||
|
'url' => env('LOG_SLACK_WEBHOOK_URL'),
|
||||||
|
'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'),
|
||||||
|
'emoji' => env('LOG_SLACK_EMOJI', ':boom:'),
|
||||||
|
'level' => env('LOG_LEVEL', 'critical'),
|
||||||
|
'replace_placeholders' => true,
|
||||||
|
],
|
||||||
|
|
||||||
|
'papertrail' => [
|
||||||
|
'driver' => 'monolog',
|
||||||
|
'level' => env('LOG_LEVEL', 'debug'),
|
||||||
|
'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
|
||||||
|
'handler_with' => [
|
||||||
|
'host' => env('PAPERTRAIL_URL'),
|
||||||
|
'port' => env('PAPERTRAIL_PORT'),
|
||||||
|
'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'),
|
||||||
|
],
|
||||||
|
'processors' => [PsrLogMessageProcessor::class],
|
||||||
|
],
|
||||||
|
|
||||||
|
'stderr' => [
|
||||||
|
'driver' => 'monolog',
|
||||||
|
'level' => env('LOG_LEVEL', 'debug'),
|
||||||
|
'handler' => StreamHandler::class,
|
||||||
|
'formatter' => env('LOG_STDERR_FORMATTER'),
|
||||||
|
'with' => [
|
||||||
|
'stream' => 'php://stderr',
|
||||||
|
],
|
||||||
|
'processors' => [PsrLogMessageProcessor::class],
|
||||||
|
],
|
||||||
|
|
||||||
|
'syslog' => [
|
||||||
|
'driver' => 'syslog',
|
||||||
|
'level' => env('LOG_LEVEL', 'debug'),
|
||||||
|
'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER),
|
||||||
|
'replace_placeholders' => true,
|
||||||
|
],
|
||||||
|
|
||||||
|
'errorlog' => [
|
||||||
|
'driver' => 'errorlog',
|
||||||
|
'level' => env('LOG_LEVEL', 'debug'),
|
||||||
|
'replace_placeholders' => true,
|
||||||
|
],
|
||||||
|
|
||||||
|
'null' => [
|
||||||
|
'driver' => 'monolog',
|
||||||
|
'handler' => NullHandler::class,
|
||||||
|
],
|
||||||
|
|
||||||
|
'emergency' => [
|
||||||
|
'path' => storage_path('logs/laravel.log'),
|
||||||
|
],
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
|
];
|
||||||
+116
@@ -0,0 +1,116 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Default Mailer
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This option controls the default mailer that is used to send all email
|
||||||
|
| messages unless another mailer is explicitly specified when sending
|
||||||
|
| the message. All additional mailers can be configured within the
|
||||||
|
| "mailers" array. Examples of each type of mailer are provided.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'default' => env('MAIL_MAILER', 'log'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Mailer Configurations
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may configure all of the mailers used by your application plus
|
||||||
|
| their respective settings. Several examples have been configured for
|
||||||
|
| you and you are free to add your own as your application requires.
|
||||||
|
|
|
||||||
|
| Laravel supports a variety of mail "transport" drivers that can be used
|
||||||
|
| when delivering an email. You may specify which one you're using for
|
||||||
|
| your mailers below. You may also add additional mailers if needed.
|
||||||
|
|
|
||||||
|
| Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
|
||||||
|
| "postmark", "resend", "log", "array",
|
||||||
|
| "failover", "roundrobin"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'mailers' => [
|
||||||
|
|
||||||
|
'smtp' => [
|
||||||
|
'transport' => 'smtp',
|
||||||
|
'url' => env('MAIL_URL'),
|
||||||
|
'host' => env('MAIL_HOST', '127.0.0.1'),
|
||||||
|
'port' => env('MAIL_PORT', 2525),
|
||||||
|
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
|
||||||
|
'username' => env('MAIL_USERNAME'),
|
||||||
|
'password' => env('MAIL_PASSWORD'),
|
||||||
|
'timeout' => null,
|
||||||
|
'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)),
|
||||||
|
],
|
||||||
|
|
||||||
|
'ses' => [
|
||||||
|
'transport' => 'ses',
|
||||||
|
],
|
||||||
|
|
||||||
|
'postmark' => [
|
||||||
|
'transport' => 'postmark',
|
||||||
|
// 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'),
|
||||||
|
// 'client' => [
|
||||||
|
// 'timeout' => 5,
|
||||||
|
// ],
|
||||||
|
],
|
||||||
|
|
||||||
|
'resend' => [
|
||||||
|
'transport' => 'resend',
|
||||||
|
],
|
||||||
|
|
||||||
|
'sendmail' => [
|
||||||
|
'transport' => 'sendmail',
|
||||||
|
'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'log' => [
|
||||||
|
'transport' => 'log',
|
||||||
|
'channel' => env('MAIL_LOG_CHANNEL'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'array' => [
|
||||||
|
'transport' => 'array',
|
||||||
|
],
|
||||||
|
|
||||||
|
'failover' => [
|
||||||
|
'transport' => 'failover',
|
||||||
|
'mailers' => [
|
||||||
|
'smtp',
|
||||||
|
'log',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
'roundrobin' => [
|
||||||
|
'transport' => 'roundrobin',
|
||||||
|
'mailers' => [
|
||||||
|
'ses',
|
||||||
|
'postmark',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Global "From" Address
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| You may wish for all emails sent by your application to be sent from
|
||||||
|
| the same address. Here you may specify a name and address that is
|
||||||
|
| used globally for all emails that are sent by your application.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'from' => [
|
||||||
|
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
|
||||||
|
'name' => env('MAIL_FROM_NAME', 'Example'),
|
||||||
|
],
|
||||||
|
|
||||||
|
];
|
||||||
@@ -0,0 +1,112 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Default Queue Connection Name
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Laravel's queue supports a variety of backends via a single, unified
|
||||||
|
| API, giving you convenient access to each backend using identical
|
||||||
|
| syntax for each. The default queue connection is defined below.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'default' => env('QUEUE_CONNECTION', 'database'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Queue Connections
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may configure the connection options for every queue backend
|
||||||
|
| used by your application. An example configuration is provided for
|
||||||
|
| each backend supported by Laravel. You're also free to add more.
|
||||||
|
|
|
||||||
|
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'connections' => [
|
||||||
|
|
||||||
|
'sync' => [
|
||||||
|
'driver' => 'sync',
|
||||||
|
],
|
||||||
|
|
||||||
|
'database' => [
|
||||||
|
'driver' => 'database',
|
||||||
|
'connection' => env('DB_QUEUE_CONNECTION'),
|
||||||
|
'table' => env('DB_QUEUE_TABLE', 'jobs'),
|
||||||
|
'queue' => env('DB_QUEUE', 'default'),
|
||||||
|
'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90),
|
||||||
|
'after_commit' => false,
|
||||||
|
],
|
||||||
|
|
||||||
|
'beanstalkd' => [
|
||||||
|
'driver' => 'beanstalkd',
|
||||||
|
'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'),
|
||||||
|
'queue' => env('BEANSTALKD_QUEUE', 'default'),
|
||||||
|
'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90),
|
||||||
|
'block_for' => 0,
|
||||||
|
'after_commit' => false,
|
||||||
|
],
|
||||||
|
|
||||||
|
'sqs' => [
|
||||||
|
'driver' => 'sqs',
|
||||||
|
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||||
|
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||||
|
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
|
||||||
|
'queue' => env('SQS_QUEUE', 'default'),
|
||||||
|
'suffix' => env('SQS_SUFFIX'),
|
||||||
|
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||||
|
'after_commit' => false,
|
||||||
|
],
|
||||||
|
|
||||||
|
'redis' => [
|
||||||
|
'driver' => 'redis',
|
||||||
|
'connection' => env('REDIS_QUEUE_CONNECTION', 'default'),
|
||||||
|
'queue' => env('REDIS_QUEUE', 'default'),
|
||||||
|
'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90),
|
||||||
|
'block_for' => null,
|
||||||
|
'after_commit' => false,
|
||||||
|
],
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Job Batching
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| The following options configure the database and table that store job
|
||||||
|
| batching information. These options can be updated to any database
|
||||||
|
| connection and table which has been defined by your application.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'batching' => [
|
||||||
|
'database' => env('DB_CONNECTION', 'sqlite'),
|
||||||
|
'table' => 'job_batches',
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Failed Queue Jobs
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| These options configure the behavior of failed queue job logging so you
|
||||||
|
| can control how and where failed jobs are stored. Laravel ships with
|
||||||
|
| support for storing failed jobs in a simple file or in a database.
|
||||||
|
|
|
||||||
|
| Supported drivers: "database-uuids", "dynamodb", "file", "null"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'failed' => [
|
||||||
|
'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
|
||||||
|
'database' => env('DB_CONNECTION', 'sqlite'),
|
||||||
|
'table' => 'failed_jobs',
|
||||||
|
],
|
||||||
|
|
||||||
|
];
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Third Party Services
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This file is for storing the credentials for third party services such
|
||||||
|
| as Mailgun, Postmark, AWS and more. This file provides the de facto
|
||||||
|
| location for this type of information, allowing packages to have
|
||||||
|
| a conventional file to locate the various service credentials.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'postmark' => [
|
||||||
|
'token' => env('POSTMARK_TOKEN'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'ses' => [
|
||||||
|
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||||
|
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||||
|
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'resend' => [
|
||||||
|
'key' => env('RESEND_KEY'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'slack' => [
|
||||||
|
'notifications' => [
|
||||||
|
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
|
||||||
|
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
];
|
||||||
@@ -0,0 +1,217 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Support\Str;
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Default Session Driver
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This option determines the default session driver that is utilized for
|
||||||
|
| incoming requests. Laravel supports a variety of storage options to
|
||||||
|
| persist session data. Database storage is a great default choice.
|
||||||
|
|
|
||||||
|
| Supported: "file", "cookie", "database", "apc",
|
||||||
|
| "memcached", "redis", "dynamodb", "array"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'driver' => env('SESSION_DRIVER', 'database'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Lifetime
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may specify the number of minutes that you wish the session
|
||||||
|
| to be allowed to remain idle before it expires. If you want them
|
||||||
|
| to expire immediately when the browser is closed then you may
|
||||||
|
| indicate that via the expire_on_close configuration option.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'lifetime' => env('SESSION_LIFETIME', 120),
|
||||||
|
|
||||||
|
'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Encryption
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This option allows you to easily specify that all of your session data
|
||||||
|
| should be encrypted before it's stored. All encryption is performed
|
||||||
|
| automatically by Laravel and you may use the session like normal.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'encrypt' => env('SESSION_ENCRYPT', false),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session File Location
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| When utilizing the "file" session driver, the session files are placed
|
||||||
|
| on disk. The default storage location is defined here; however, you
|
||||||
|
| are free to provide another location where they should be stored.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'files' => storage_path('framework/sessions'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Database Connection
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| When using the "database" or "redis" session drivers, you may specify a
|
||||||
|
| connection that should be used to manage these sessions. This should
|
||||||
|
| correspond to a connection in your database configuration options.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'connection' => env('SESSION_CONNECTION'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Database Table
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| When using the "database" session driver, you may specify the table to
|
||||||
|
| be used to store sessions. Of course, a sensible default is defined
|
||||||
|
| for you; however, you're welcome to change this to another table.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'table' => env('SESSION_TABLE', 'sessions'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Cache Store
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| When using one of the framework's cache driven session backends, you may
|
||||||
|
| define the cache store which should be used to store the session data
|
||||||
|
| between requests. This must match one of your defined cache stores.
|
||||||
|
|
|
||||||
|
| Affects: "apc", "dynamodb", "memcached", "redis"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'store' => env('SESSION_STORE'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Sweeping Lottery
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Some session drivers must manually sweep their storage location to get
|
||||||
|
| rid of old sessions from storage. Here are the chances that it will
|
||||||
|
| happen on a given request. By default, the odds are 2 out of 100.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'lottery' => [2, 100],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Cookie Name
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may change the name of the session cookie that is created by
|
||||||
|
| the framework. Typically, you should not need to change this value
|
||||||
|
| since doing so does not grant a meaningful security improvement.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'cookie' => env(
|
||||||
|
'SESSION_COOKIE',
|
||||||
|
Str::slug(env('APP_NAME', 'laravel'), '_').'_session'
|
||||||
|
),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Cookie Path
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| The session cookie path determines the path for which the cookie will
|
||||||
|
| be regarded as available. Typically, this will be the root path of
|
||||||
|
| your application, but you're free to change this when necessary.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'path' => env('SESSION_PATH', '/'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Cookie Domain
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This value determines the domain and subdomains the session cookie is
|
||||||
|
| available to. By default, the cookie will be available to the root
|
||||||
|
| domain and all subdomains. Typically, this shouldn't be changed.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'domain' => env('SESSION_DOMAIN'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| HTTPS Only Cookies
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| By setting this option to true, session cookies will only be sent back
|
||||||
|
| to the server if the browser has a HTTPS connection. This will keep
|
||||||
|
| the cookie from being sent to you when it can't be done securely.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'secure' => env('SESSION_SECURE_COOKIE'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| HTTP Access Only
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Setting this value to true will prevent JavaScript from accessing the
|
||||||
|
| value of the cookie and the cookie will only be accessible through
|
||||||
|
| the HTTP protocol. It's unlikely you should disable this option.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'http_only' => env('SESSION_HTTP_ONLY', true),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Same-Site Cookies
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This option determines how your cookies behave when cross-site requests
|
||||||
|
| take place, and can be used to mitigate CSRF attacks. By default, we
|
||||||
|
| will set this value to "lax" to permit secure cross-site requests.
|
||||||
|
|
|
||||||
|
| See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value
|
||||||
|
|
|
||||||
|
| Supported: "lax", "strict", "none", null
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'same_site' => env('SESSION_SAME_SITE', 'lax'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Partitioned Cookies
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Setting this value to true will tie the cookie to the top-level site for
|
||||||
|
| a cross-site context. Partitioned cookies are accepted by the browser
|
||||||
|
| when flagged "secure" and the Same-Site attribute is set to "none".
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'partitioned' => env('SESSION_PARTITIONED_COOKIE', false),
|
||||||
|
|
||||||
|
];
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
*.sqlite*
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Database\Factories;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||||
|
use Illuminate\Support\Facades\Hash;
|
||||||
|
use Illuminate\Support\Str;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\User>
|
||||||
|
*/
|
||||||
|
class UserFactory extends Factory
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* The current password being used by the factory.
|
||||||
|
*/
|
||||||
|
protected static ?string $password;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Define the model's default state.
|
||||||
|
*
|
||||||
|
* @return array<string, mixed>
|
||||||
|
*/
|
||||||
|
public function definition(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'name' => fake()->name(),
|
||||||
|
'email' => fake()->unique()->safeEmail(),
|
||||||
|
'email_verified_at' => now(),
|
||||||
|
'password' => static::$password ??= Hash::make('password'),
|
||||||
|
'remember_token' => Str::random(10),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicate that the model's email address should be unverified.
|
||||||
|
*/
|
||||||
|
public function unverified(): static
|
||||||
|
{
|
||||||
|
return $this->state(fn (array $attributes) => [
|
||||||
|
'email_verified_at' => null,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,282 @@
|
|||||||
|
create table
|
||||||
|
`users` (
|
||||||
|
`id` bigint unsigned not null auto_increment primary key,
|
||||||
|
`name` varchar(255) not null,
|
||||||
|
`email` varchar(255) not null,
|
||||||
|
`email_verified_at` timestamp null,
|
||||||
|
`password` varchar(255) not null,
|
||||||
|
`remember_token` varchar(100) null,
|
||||||
|
`created_at` timestamp null,
|
||||||
|
`updated_at` timestamp null
|
||||||
|
) default character
|
||||||
|
set
|
||||||
|
utf8mb4 collate 'utf8mb4_unicode_ci';
|
||||||
|
|
||||||
|
alter table `users` add unique `users_email_unique` (`email`);
|
||||||
|
|
||||||
|
create table
|
||||||
|
`password_reset_tokens` (
|
||||||
|
`email` varchar(255) not null,
|
||||||
|
`token` varchar(255) not null,
|
||||||
|
`created_at` timestamp null,
|
||||||
|
primary key (`email`)
|
||||||
|
) default character
|
||||||
|
set
|
||||||
|
utf8mb4 collate 'utf8mb4_unicode_ci';
|
||||||
|
|
||||||
|
create table
|
||||||
|
`sessions` (
|
||||||
|
`id` varchar(255) not null,
|
||||||
|
`user_id` bigint unsigned null,
|
||||||
|
`ip_address` varchar(45) null,
|
||||||
|
`user_agent` text null,
|
||||||
|
`payload` longtext not null,
|
||||||
|
`last_activity` int not null,
|
||||||
|
primary key (`id`)
|
||||||
|
) default character
|
||||||
|
set
|
||||||
|
utf8mb4 collate 'utf8mb4_unicode_ci';
|
||||||
|
|
||||||
|
alter table `sessions` add index `sessions_user_id_index` (`user_id`);
|
||||||
|
|
||||||
|
alter table `sessions` add index `sessions_last_activity_index` (`last_activity`);
|
||||||
|
|
||||||
|
create table
|
||||||
|
`cache` (
|
||||||
|
`key` varchar(255) not null,
|
||||||
|
`value` mediumtext not null,
|
||||||
|
`expiration` int not null,
|
||||||
|
primary key (`key`)
|
||||||
|
) default character
|
||||||
|
set
|
||||||
|
utf8mb4 collate 'utf8mb4_unicode_ci';
|
||||||
|
|
||||||
|
create table
|
||||||
|
`cache_locks` (
|
||||||
|
`key` varchar(255) not null,
|
||||||
|
`owner` varchar(255) not null,
|
||||||
|
`expiration` int not null,
|
||||||
|
primary key (`key`)
|
||||||
|
) default character
|
||||||
|
set
|
||||||
|
utf8mb4 collate 'utf8mb4_unicode_ci';
|
||||||
|
|
||||||
|
create table
|
||||||
|
`jobs` (
|
||||||
|
`id` bigint unsigned not null auto_increment primary key,
|
||||||
|
`queue` varchar(255) not null,
|
||||||
|
`payload` longtext not null,
|
||||||
|
`attempts` tinyint unsigned not null,
|
||||||
|
`reserved_at` int unsigned null,
|
||||||
|
`available_at` int unsigned not null,
|
||||||
|
`created_at` int unsigned not null
|
||||||
|
) default character
|
||||||
|
set
|
||||||
|
utf8mb4 collate 'utf8mb4_unicode_ci';
|
||||||
|
|
||||||
|
alter table `jobs` add index `jobs_queue_index` (`queue`);
|
||||||
|
|
||||||
|
create table
|
||||||
|
`job_batches` (
|
||||||
|
`id` varchar(255) not null,
|
||||||
|
`name` varchar(255) not null,
|
||||||
|
`total_jobs` int not null,
|
||||||
|
`pending_jobs` int not null,
|
||||||
|
`failed_jobs` int not null,
|
||||||
|
`failed_job_ids` longtext not null,
|
||||||
|
`options` mediumtext null,
|
||||||
|
`cancelled_at` int null,
|
||||||
|
`created_at` int not null,
|
||||||
|
`finished_at` int null,
|
||||||
|
primary key (`id`)
|
||||||
|
) default character
|
||||||
|
set
|
||||||
|
utf8mb4 collate 'utf8mb4_unicode_ci';
|
||||||
|
|
||||||
|
create table
|
||||||
|
`failed_jobs` (
|
||||||
|
`id` bigint unsigned not null auto_increment primary key,
|
||||||
|
`uuid` varchar(255) not null,
|
||||||
|
`connection` text not null,
|
||||||
|
`queue` text not null,
|
||||||
|
`payload` longtext not null,
|
||||||
|
`exception` longtext not null,
|
||||||
|
`failed_at` timestamp not null default CURRENT_TIMESTAMP
|
||||||
|
) default character
|
||||||
|
set
|
||||||
|
utf8mb4 collate 'utf8mb4_unicode_ci';
|
||||||
|
|
||||||
|
alter table `failed_jobs` add unique `failed_jobs_uuid_unique` (`uuid`);
|
||||||
|
|
||||||
|
create table
|
||||||
|
`packings` (
|
||||||
|
`id` bigint unsigned not null auto_increment primary key,
|
||||||
|
`name` varchar(255) not null,
|
||||||
|
`size` decimal(10, 2) not null,
|
||||||
|
`created_at` timestamp null,
|
||||||
|
`updated_at` timestamp null
|
||||||
|
) default character
|
||||||
|
set
|
||||||
|
utf8mb4 collate 'utf8mb4_unicode_ci';
|
||||||
|
|
||||||
|
create table
|
||||||
|
`recipes` (
|
||||||
|
`id` bigint unsigned not null auto_increment primary key,
|
||||||
|
`name` varchar(255) not null,
|
||||||
|
`description` text null,
|
||||||
|
`created_at` timestamp null,
|
||||||
|
`updated_at` timestamp null
|
||||||
|
) default character
|
||||||
|
set
|
||||||
|
utf8mb4 collate 'utf8mb4_unicode_ci';
|
||||||
|
|
||||||
|
create table
|
||||||
|
`spices` (
|
||||||
|
`id` bigint unsigned not null auto_increment primary key,
|
||||||
|
`name` varchar(255) not null,
|
||||||
|
`quantity` decimal(10, 2) not null default '0',
|
||||||
|
`unit` varchar(255) not null,
|
||||||
|
`created_at` timestamp null,
|
||||||
|
`updated_at` timestamp null
|
||||||
|
) default character
|
||||||
|
set
|
||||||
|
utf8mb4 collate 'utf8mb4_unicode_ci';
|
||||||
|
|
||||||
|
create table
|
||||||
|
`suppliers` (
|
||||||
|
`id` bigint unsigned not null auto_increment primary key,
|
||||||
|
`name` varchar(255) not null,
|
||||||
|
`created_at` timestamp null,
|
||||||
|
`updated_at` timestamp null
|
||||||
|
) default character
|
||||||
|
set
|
||||||
|
utf8mb4 collate 'utf8mb4_unicode_ci';
|
||||||
|
|
||||||
|
create table
|
||||||
|
`spices_suppliers` (
|
||||||
|
`id` bigint unsigned not null auto_increment primary key,
|
||||||
|
`spice_id` bigint unsigned not null,
|
||||||
|
`supplier_id` bigint unsigned not null,
|
||||||
|
`amount` decimal(10, 2) not null,
|
||||||
|
`supplied_at` timestamp null,
|
||||||
|
`created_at` timestamp null,
|
||||||
|
`updated_at` timestamp null
|
||||||
|
) default character
|
||||||
|
set
|
||||||
|
utf8mb4 collate 'utf8mb4_unicode_ci';
|
||||||
|
|
||||||
|
alter table `spices_suppliers` add constraint `spices_suppliers_spice_id_foreign` foreign key (`spice_id`) references `spices` (`id`) on delete cascade;
|
||||||
|
|
||||||
|
alter table `spices_suppliers` add constraint `spices_suppliers_supplier_id_foreign` foreign key (`supplier_id`) references `suppliers` (`id`) on delete cascade;
|
||||||
|
|
||||||
|
create table
|
||||||
|
`products` (
|
||||||
|
`id` bigint unsigned not null auto_increment primary key,
|
||||||
|
`title` text not null,
|
||||||
|
`images` json null,
|
||||||
|
`description` text null,
|
||||||
|
`package_content` text null,
|
||||||
|
`recipes_id` bigint unsigned not null,
|
||||||
|
`created_at` timestamp null,
|
||||||
|
`updated_at` timestamp null
|
||||||
|
) default character
|
||||||
|
set
|
||||||
|
utf8mb4 collate 'utf8mb4_unicode_ci';
|
||||||
|
|
||||||
|
alter table `products` add constraint `products_recipes_id_foreign` foreign key (`recipes_id`) references `recipes` (`id`) on delete cascade;
|
||||||
|
|
||||||
|
alter table `products` add unique `products_gtin_unique` (`gtin`);
|
||||||
|
|
||||||
|
create table
|
||||||
|
`products_sizes` (
|
||||||
|
`id` bigint unsigned not null auto_increment primary key,
|
||||||
|
`product_id` bigint unsigned not null,
|
||||||
|
`packing_id` bigint unsigned not null,
|
||||||
|
`gtin` bigint unsigned,
|
||||||
|
`description` varchar(255) null,
|
||||||
|
`price` float (53) not null,
|
||||||
|
`created_at` timestamp null,
|
||||||
|
`updated_at` timestamp null
|
||||||
|
) default character
|
||||||
|
set
|
||||||
|
utf8mb4 collate 'utf8mb4_unicode_ci';
|
||||||
|
|
||||||
|
alter table `products_sizes` add constraint `products_sizes_product_id_foreign` foreign key (`product_id`) references `products` (`id`) on delete cascade;
|
||||||
|
|
||||||
|
alter table `products_sizes` add constraint `products_sizes_packing_id_foreign` foreign key (`packing_id`) references `packings` (`id`) on delete cascade;
|
||||||
|
|
||||||
|
create table
|
||||||
|
`products_inventory` (
|
||||||
|
`id` bigint unsigned not null auto_increment primary key,
|
||||||
|
`product_id` bigint unsigned not null,
|
||||||
|
`size_id` bigint unsigned not null,
|
||||||
|
`out_at` timestamp null,
|
||||||
|
`created_at` timestamp null,
|
||||||
|
`updated_at` timestamp null
|
||||||
|
) default character
|
||||||
|
set
|
||||||
|
utf8mb4 collate 'utf8mb4_unicode_ci';
|
||||||
|
|
||||||
|
alter table `products_inventory` add constraint `products_inventory_product_id_foreign` foreign key (`product_id`) references `products` (`id`);
|
||||||
|
|
||||||
|
alter table `products_inventory` add constraint `products_inventory_size_id_foreign` foreign key (`size_id`) references `products_sizes` (`id`);
|
||||||
|
|
||||||
|
create table
|
||||||
|
`products_sales` (
|
||||||
|
`id` bigint unsigned not null auto_increment primary key,
|
||||||
|
`product_id` bigint unsigned not null,
|
||||||
|
`size_id` bigint unsigned not null,
|
||||||
|
`amount` int not null,
|
||||||
|
`comment` text null,
|
||||||
|
`sold_at` timestamp not null,
|
||||||
|
`created_at` timestamp null,
|
||||||
|
`updated_at` timestamp null
|
||||||
|
) default character
|
||||||
|
set
|
||||||
|
utf8mb4 collate 'utf8mb4_unicode_ci';
|
||||||
|
|
||||||
|
alter table `products_sales` add constraint `products_sales_product_id_foreign` foreign key (`product_id`) references `products` (`id`);
|
||||||
|
|
||||||
|
alter table `products_sales` add constraint `products_sales_size_id_foreign` foreign key (`size_id`) references `products_sizes` (`id`);
|
||||||
|
|
||||||
|
create table
|
||||||
|
`recipes_spices` (
|
||||||
|
`id` bigint unsigned not null auto_increment primary key,
|
||||||
|
`recipe_id` bigint unsigned not null,
|
||||||
|
`spice_id` bigint unsigned not null,
|
||||||
|
`amount_in_percent` decimal(4, 2) not null,
|
||||||
|
`created_at` timestamp null,
|
||||||
|
`updated_at` timestamp null
|
||||||
|
) default character
|
||||||
|
set
|
||||||
|
utf8mb4 collate 'utf8mb4_unicode_ci';
|
||||||
|
|
||||||
|
alter table `recipes_spices` add constraint `recipes_spices_recipe_id_foreign` foreign key (`recipe_id`) references `recipes` (`id`) on delete cascade;
|
||||||
|
|
||||||
|
alter table `recipes_spices` add constraint `recipes_spices_spice_id_foreign` foreign key (`spice_id`) references `spices` (`id`) on delete cascade;
|
||||||
|
|
||||||
|
create table
|
||||||
|
`activity_log` (
|
||||||
|
`id` bigint unsigned not null auto_increment primary key,
|
||||||
|
`log_name` varchar(255) null,
|
||||||
|
`description` text not null,
|
||||||
|
`subject_type` varchar(255) null,
|
||||||
|
`subject_id` bigint unsigned null,
|
||||||
|
`causer_type` varchar(255) null,
|
||||||
|
`causer_id` bigint unsigned null,
|
||||||
|
`properties` json null,
|
||||||
|
`created_at` timestamp null,
|
||||||
|
`updated_at` timestamp null
|
||||||
|
) default character
|
||||||
|
set
|
||||||
|
utf8mb4 collate 'utf8mb4_unicode_ci';
|
||||||
|
|
||||||
|
alter table `activity_log` add index `subject` (`subject_type`, `subject_id`);
|
||||||
|
|
||||||
|
alter table `activity_log` add index `causer` (`causer_type`, `causer_id`);
|
||||||
|
|
||||||
|
alter table `activity_log` add index `activity_log_log_name_index` (`log_name`);
|
||||||
|
|
||||||
|
alter table `activity_log` add `event` varchar(255) null after `subject_type`;
|
||||||
|
|
||||||
|
alter table `activity_log` add `batch_uuid` char(36) null after `properties`;
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
Schema::create('users', function (Blueprint $table) {
|
||||||
|
$table->id();
|
||||||
|
$table->string('name');
|
||||||
|
$table->string('email')->unique();
|
||||||
|
$table->timestamp('email_verified_at')->nullable();
|
||||||
|
$table->string('password');
|
||||||
|
$table->rememberToken();
|
||||||
|
$table->timestamps();
|
||||||
|
});
|
||||||
|
|
||||||
|
Schema::create('password_reset_tokens', function (Blueprint $table) {
|
||||||
|
$table->string('email')->primary();
|
||||||
|
$table->string('token');
|
||||||
|
$table->timestamp('created_at')->nullable();
|
||||||
|
});
|
||||||
|
|
||||||
|
Schema::create('sessions', function (Blueprint $table) {
|
||||||
|
$table->string('id')->primary();
|
||||||
|
$table->foreignId('user_id')->nullable()->index();
|
||||||
|
$table->string('ip_address', 45)->nullable();
|
||||||
|
$table->text('user_agent')->nullable();
|
||||||
|
$table->longText('payload');
|
||||||
|
$table->integer('last_activity')->index();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('users');
|
||||||
|
Schema::dropIfExists('password_reset_tokens');
|
||||||
|
Schema::dropIfExists('sessions');
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
Schema::create('cache', function (Blueprint $table) {
|
||||||
|
$table->string('key')->primary();
|
||||||
|
$table->mediumText('value');
|
||||||
|
$table->integer('expiration');
|
||||||
|
});
|
||||||
|
|
||||||
|
Schema::create('cache_locks', function (Blueprint $table) {
|
||||||
|
$table->string('key')->primary();
|
||||||
|
$table->string('owner');
|
||||||
|
$table->integer('expiration');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('cache');
|
||||||
|
Schema::dropIfExists('cache_locks');
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -0,0 +1,57 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
Schema::create('jobs', function (Blueprint $table) {
|
||||||
|
$table->id();
|
||||||
|
$table->string('queue')->index();
|
||||||
|
$table->longText('payload');
|
||||||
|
$table->unsignedTinyInteger('attempts');
|
||||||
|
$table->unsignedInteger('reserved_at')->nullable();
|
||||||
|
$table->unsignedInteger('available_at');
|
||||||
|
$table->unsignedInteger('created_at');
|
||||||
|
});
|
||||||
|
|
||||||
|
Schema::create('job_batches', function (Blueprint $table) {
|
||||||
|
$table->string('id')->primary();
|
||||||
|
$table->string('name');
|
||||||
|
$table->integer('total_jobs');
|
||||||
|
$table->integer('pending_jobs');
|
||||||
|
$table->integer('failed_jobs');
|
||||||
|
$table->longText('failed_job_ids');
|
||||||
|
$table->mediumText('options')->nullable();
|
||||||
|
$table->integer('cancelled_at')->nullable();
|
||||||
|
$table->integer('created_at');
|
||||||
|
$table->integer('finished_at')->nullable();
|
||||||
|
});
|
||||||
|
|
||||||
|
Schema::create('failed_jobs', function (Blueprint $table) {
|
||||||
|
$table->id();
|
||||||
|
$table->string('uuid')->unique();
|
||||||
|
$table->text('connection');
|
||||||
|
$table->text('queue');
|
||||||
|
$table->longText('payload');
|
||||||
|
$table->longText('exception');
|
||||||
|
$table->timestamp('failed_at')->useCurrent();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('jobs');
|
||||||
|
Schema::dropIfExists('job_batches');
|
||||||
|
Schema::dropIfExists('failed_jobs');
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
Schema::create('packings', function (Blueprint $table) {
|
||||||
|
$table->id(); // Primärschlüssel
|
||||||
|
$table->string('name'); // Name der Verpackung
|
||||||
|
$table->decimal('size', 10, 2); // Größe in Gramm
|
||||||
|
$table->timestamps(); // created_at und updated_at
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
Schema::create('recipes', function (Blueprint $table) {
|
||||||
|
$table->id();
|
||||||
|
$table->string('name');
|
||||||
|
$table->text('description')->nullable();
|
||||||
|
$table->timestamps(); // created_at und updated_at
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('recipes');
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
Schema::create('spices', function (Blueprint $table) {
|
||||||
|
$table->id();
|
||||||
|
$table->string('name');
|
||||||
|
$table->decimal('quantity', 10, 2)->default(0);
|
||||||
|
$table->string('unit');
|
||||||
|
$table->timestamps();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('spices');
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
Schema::create('suppliers', function (Blueprint $table) {
|
||||||
|
$table->id();
|
||||||
|
$table->string('name');
|
||||||
|
$table->timestamps();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('suppliers');
|
||||||
|
}
|
||||||
|
};
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user