feat(app): fresh module-platform, provider, middleware, rule and support implementation

This commit is contained in:
Darko Gjorgjijoski
2026-08-21 14:15:49 +02:00
parent 56cb653a2d
commit 7d5f29a1d4
24 changed files with 1580 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
<?php
namespace App\Http\Middleware;
use Illuminate\Cookie\Middleware\EncryptCookies as FrameworkEncryptCookies;
/**
* Application hook into the framework's cookie encryption pass.
*
* It exists so the app owns the opt-out list; nothing else is customised.
*/
class EncryptCookies extends FrameworkEncryptCookies
{
/**
* Whether cookie payloads are run through PHP's serializer before being
* encrypted. Left off, matching the framework default.
*
* @var bool
*/
protected static $serialize = false;
/**
* Cookie names that travel in clear text. Nothing is exempt right now.
*
* @var array
*/
protected $except = [
//
];
}