Skip to content

Instantly share code, notes, and snippets.

View royteusink's full-sized avatar

Roy Teusink royteusink

View GitHub Profile
@royteusink
royteusink / ScopeWhereInSequence.md
Last active June 17, 2024 13:45
Laravel ScopeWhereInSequence

App/Traits/ScopeWhereInSequence.php

<?php

namespace App\Traits;

use Illuminate\Database\Eloquent\Builder;
use Illuminate\Support\Collection;
@royteusink
royteusink / spatie-laravel-data-value-cast.md
Created November 12, 2024 06:59
Spatie LaravelData nested value cast with dot notation
use Spatie\LaravelData\Casts\Cast;
use Spatie\LaravelData\Casts\IterableItemCast;
use Spatie\LaravelData\Support\Creation\CreationContext;
use Spatie\LaravelData\Support\DataProperty;

class ValueCast implements Cast, IterableItemCast
{
    public function __construct(
 protected ?string $value = null,