You can add your own pipelines to the configuration, they might look something like:
<?phpnamespace App\Pipelines\Orders;use Closure;use Lunar\Models\Contracts\Order;class CustomOrderPipeline{ public function handle(Order $order, Closure $next): mixed { // Do something to the order... return $next($order); }}