Skip to content

Instantly share code, notes, and snippets.

@monkeyphysics
monkeyphysics / App\Casts\Point.php
Last active April 12, 2025 13:51
Laravel MySQL Point Cast class
<?php
namespace App\Casts;
use Illuminate\Support\Facades\DB;
use Illuminate\Contracts\Database\Eloquent\CastsAttributes;
// todo: make it even better by implementing a Point class and working with that
class Point implements CastsAttributes