repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Mysql/PointType.php
src/Database/Types/Mysql/PointType.php
<?php namespace TCG\Voyager\Database\Types\Mysql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class PointType extends Type { public const NAME = 'point'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'point'; } }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Mysql/GeometryCollectionType.php
src/Database/Types/Mysql/GeometryCollectionType.php
<?php namespace TCG\Voyager\Database\Types\Mysql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class GeometryCollectionType extends Type { public const NAME = 'geometrycollection'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Mysql/GeometryType.php
src/Database/Types/Mysql/GeometryType.php
<?php namespace TCG\Voyager\Database\Types\Mysql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class GeometryType extends Type { public const NAME = 'geometry'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'geometry'; ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Mysql/PolygonType.php
src/Database/Types/Mysql/PolygonType.php
<?php namespace TCG\Voyager\Database\Types\Mysql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class PolygonType extends Type { public const NAME = 'polygon'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'polygon'; ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Mysql/LongBlobType.php
src/Database/Types/Mysql/LongBlobType.php
<?php namespace TCG\Voyager\Database\Types\Mysql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class LongBlobType extends Type { public const NAME = 'longblob'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'longblob'; ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Mysql/LineStringType.php
src/Database/Types/Mysql/LineStringType.php
<?php namespace TCG\Voyager\Database\Types\Mysql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class LineStringType extends Type { public const NAME = 'linestring'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'linestr...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Mysql/MultiLineStringType.php
src/Database/Types/Mysql/MultiLineStringType.php
<?php namespace TCG\Voyager\Database\Types\Mysql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class MultiLineStringType extends Type { public const NAME = 'multilinestring'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { retur...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Mysql/VarBinaryType.php
src/Database/Types/Mysql/VarBinaryType.php
<?php namespace TCG\Voyager\Database\Types\Mysql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class VarBinaryType extends Type { public const NAME = 'varbinary'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { $field['length'] ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Mysql/SetType.php
src/Database/Types/Mysql/SetType.php
<?php namespace TCG\Voyager\Database\Types\Mysql; use Doctrine\DBAL\Platforms\AbstractPlatform; use Illuminate\Support\Facades\DB; use TCG\Voyager\Database\Types\Type; class SetType extends Type { public const NAME = 'set'; public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platfor...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Mysql/FloatType.php
src/Database/Types/Mysql/FloatType.php
<?php namespace TCG\Voyager\Database\Types\Mysql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class FloatType extends Type { public const NAME = 'float'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'float'; } }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Mysql/TimeStampType.php
src/Database/Types/Mysql/TimeStampType.php
<?php namespace TCG\Voyager\Database\Types\Mysql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class TimeStampType extends Type { public const NAME = 'timestamp'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { if (isset($field[...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Mysql/YearType.php
src/Database/Types/Mysql/YearType.php
<?php namespace TCG\Voyager\Database\Types\Mysql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class YearType extends Type { public const NAME = 'year'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'year'; } }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Mysql/MultiPolygonType.php
src/Database/Types/Mysql/MultiPolygonType.php
<?php namespace TCG\Voyager\Database\Types\Mysql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class MultiPolygonType extends Type { public const NAME = 'multipolygon'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'mul...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Mysql/BinaryType.php
src/Database/Types/Mysql/BinaryType.php
<?php namespace TCG\Voyager\Database\Types\Mysql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class BinaryType extends Type { public const NAME = 'binary'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { $field['length'] = empt...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Common/CharType.php
src/Database/Types/Common/CharType.php
<?php namespace TCG\Voyager\Database\Types\Common; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class CharType extends Type { public const NAME = 'char'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { $field['length'] = empty($...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Common/DoubleType.php
src/Database/Types/Common/DoubleType.php
<?php namespace TCG\Voyager\Database\Types\Common; use Doctrine\DBAL\Types\FloatType as DoctrineFloatType; class DoubleType extends DoctrineFloatType { public const NAME = 'double'; public function getName() { return static::NAME; } }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Common/VarCharType.php
src/Database/Types/Common/VarCharType.php
<?php namespace TCG\Voyager\Database\Types\Common; use Doctrine\DBAL\Types\StringType as DoctrineStringType; class VarCharType extends DoctrineStringType { public const NAME = 'varchar'; public function getName() { return static::NAME; } }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Common/JsonType.php
src/Database/Types/Common/JsonType.php
<?php namespace TCG\Voyager\Database\Types\Common; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class JsonType extends Type { public const NAME = 'json'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'json'; } }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Common/NumericType.php
src/Database/Types/Common/NumericType.php
<?php namespace TCG\Voyager\Database\Types\Common; use Doctrine\DBAL\Types\DecimalType as DoctrineDecimalType; class NumericType extends DoctrineDecimalType { public const NAME = 'numeric'; public function getName() { return static::NAME; } }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Common/TextType.php
src/Database/Types/Common/TextType.php
<?php namespace TCG\Voyager\Database\Types\Common; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class TextType extends Type { public const NAME = 'text'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'text'; } }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/JsonbType.php
src/Database/Types/Postgresql/JsonbType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class JsonbType extends Type { public const NAME = 'jsonb'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'jsonb'; ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/MoneyType.php
src/Database/Types/Postgresql/MoneyType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class MoneyType extends Type { public const NAME = 'money'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'money'; ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/UuidType.php
src/Database/Types/Postgresql/UuidType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class UuidType extends Type { public const NAME = 'uuid'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'uuid'; } }...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/SmallIntType.php
src/Database/Types/Postgresql/SmallIntType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class SmallIntType extends Type { public const NAME = 'smallint'; public const DBTYPE = 'int2'; public function getSQLDeclaration(array $field, AbstractPlatform $plat...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/CharacterVaryingType.php
src/Database/Types/Postgresql/CharacterVaryingType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use TCG\Voyager\Database\Types\Common\VarCharType; class CharacterVaryingType extends VarCharType { public const NAME = 'character varying'; public const DBTYPE = 'varchar'; }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/BitType.php
src/Database/Types/Postgresql/BitType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class BitType extends Type { public const NAME = 'bit'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { $length = empty($field['...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/TxidSnapshotType.php
src/Database/Types/Postgresql/TxidSnapshotType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class TxidSnapshotType extends Type { public const NAME = 'txid_snapshot'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { retur...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/GeometryType.php
src/Database/Types/Postgresql/GeometryType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class GeometryType extends Type { public const NAME = 'geometry'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'geomet...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/TsQueryType.php
src/Database/Types/Postgresql/TsQueryType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class TsQueryType extends Type { public const NAME = 'tsquery'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'tsquery'...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/XmlType.php
src/Database/Types/Postgresql/XmlType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class XmlType extends Type { public const NAME = 'xml'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'xml'; } }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/CharacterType.php
src/Database/Types/Postgresql/CharacterType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use TCG\Voyager\Database\Types\Common\CharType; class CharacterType extends CharType { public const NAME = 'character'; public const DBTYPE = 'bpchar'; }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/TimeStampTzType.php
src/Database/Types/Postgresql/TimeStampTzType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class TimeStampTzType extends Type { public const NAME = 'timestamptz'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return '...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/ByteaType.php
src/Database/Types/Postgresql/ByteaType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class ByteaType extends Type { public const NAME = 'bytea'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'bytea'; ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/MacAddrType.php
src/Database/Types/Postgresql/MacAddrType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class MacAddrType extends Type { public const NAME = 'macaddr'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'macaddr'...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/TimeTzType.php
src/Database/Types/Postgresql/TimeTzType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class TimeTzType extends Type { public const NAME = 'timetz'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'time(0) wi...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/InetType.php
src/Database/Types/Postgresql/InetType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class InetType extends Type { public const NAME = 'inet'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'inet'; } }...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/TsVectorType.php
src/Database/Types/Postgresql/TsVectorType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class TsVectorType extends Type { public const NAME = 'tsvector'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'tsvect...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/IntervalType.php
src/Database/Types/Postgresql/IntervalType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class IntervalType extends Type { public const NAME = 'interval'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'interv...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/CidrType.php
src/Database/Types/Postgresql/CidrType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class CidrType extends Type { public const NAME = 'cidr'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'cidr'; } }...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/TimeStampType.php
src/Database/Types/Postgresql/TimeStampType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class TimeStampType extends Type { public const NAME = 'timestamp'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'time...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/DoublePrecisionType.php
src/Database/Types/Postgresql/DoublePrecisionType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use TCG\Voyager\Database\Types\Common\DoubleType; class DoublePrecisionType extends DoubleType { public const NAME = 'double precision'; public const DBTYPE = 'float8'; }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/BitVaryingType.php
src/Database/Types/Postgresql/BitVaryingType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class BitVaryingType extends Type { public const NAME = 'bit varying'; public const DBTYPE = 'varbit'; public function getSQLDeclaration(array $field, AbstractPlatfor...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Postgresql/RealType.php
src/Database/Types/Postgresql/RealType.php
<?php namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class RealType extends Type { public const NAME = 'real'; public const DBTYPE = 'float4'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Types/Sqlite/RealType.php
src/Database/Types/Sqlite/RealType.php
<?php namespace TCG\Voyager\Database\Types\Sqlite; use Doctrine\DBAL\Platforms\AbstractPlatform; use TCG\Voyager\Database\Types\Type; class RealType extends Type { public const NAME = 'real'; public function getSQLDeclaration(array $field, AbstractPlatform $platform) { return 'real'; } }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Schema/Table.php
src/Database/Schema/Table.php
<?php namespace TCG\Voyager\Database\Schema; use Doctrine\DBAL\Schema\Comparator; use Doctrine\DBAL\Schema\Table as DoctrineTable; class Table extends DoctrineTable { public static function make($table) { if (!is_array($table)) { $table = json_decode($table, true); } $nam...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Schema/ForeignKey.php
src/Database/Schema/ForeignKey.php
<?php namespace TCG\Voyager\Database\Schema; use Doctrine\DBAL\Schema\ForeignKeyConstraint as DoctrineForeignKey; abstract class ForeignKey { public static function make(array $foreignKey) { // Set the local table $localTable = null; if (isset($foreignKey['localTable'])) { ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Schema/Identifier.php
src/Database/Schema/Identifier.php
<?php namespace TCG\Voyager\Database\Schema; use Illuminate\Support\Facades\Validator; abstract class Identifier { // Warning: Do not modify this public const REGEX = '^[a-zA-Z_][a-zA-Z0-9_]*$'; public static function validate($identifier, $asset = '') { $identifier = trim($identifier); ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Schema/SchemaManager.php
src/Database/Schema/SchemaManager.php
<?php namespace TCG\Voyager\Database\Schema; use Doctrine\DBAL\Schema\SchemaException; use Doctrine\DBAL\Schema\Table as DoctrineTable; use Illuminate\Support\Facades\DB; use TCG\Voyager\Database\Types\Type; abstract class SchemaManager { // todo: trim parameters public static function __callStatic($method,...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Schema/Column.php
src/Database/Schema/Column.php
<?php namespace TCG\Voyager\Database\Schema; use Doctrine\DBAL\Schema\Column as DoctrineColumn; use Doctrine\DBAL\Types\Type as DoctrineType; use TCG\Voyager\Database\Types\Type; abstract class Column { public static function make(array $column, string $tableName = null) { $name = Identifier::validat...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Schema/Index.php
src/Database/Schema/Index.php
<?php namespace TCG\Voyager\Database\Schema; use Doctrine\DBAL\Schema\Index as DoctrineIndex; abstract class Index { public const PRIMARY = 'PRIMARY'; public const UNIQUE = 'UNIQUE'; public const INDEX = 'INDEX'; public static function make(array $index) { $columns = $index['columns']; ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Platforms/Platform.php
src/Database/Platforms/Platform.php
<?php namespace TCG\Voyager\Database\Platforms; use Illuminate\Support\Collection; abstract class Platform { // abstract public static function getTypes(Collection $typeMapping); // abstract public static function registerCustomTypeOptions(); public static function getPlatform($platformName) { ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Platforms/Mysql.php
src/Database/Platforms/Mysql.php
<?php namespace TCG\Voyager\Database\Platforms; use Illuminate\Support\Collection; use TCG\Voyager\Database\Types\Type; abstract class Mysql extends Platform { public static function getTypes(Collection $typeMapping) { $typeMapping->forget([ 'real', // same as double 'int',...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Platforms/Postgresql.php
src/Database/Platforms/Postgresql.php
<?php namespace TCG\Voyager\Database\Platforms; use Illuminate\Support\Collection; abstract class Postgresql extends Platform { public static function getTypes(Collection $typeMapping) { // todo: need to create // box, circle, line, lseg, path, pg_lsn, point, polygon $typeMapping->fo...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Database/Platforms/Sqlite.php
src/Database/Platforms/Sqlite.php
<?php namespace TCG\Voyager\Database\Platforms; use Illuminate\Support\Collection; abstract class Sqlite extends Platform { public static function getTypes(Collection $typeMapping) { $typeMapping->forget([ 'decimal', 'double', ]); return $typeMapping->unique()...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Facades/Voyager.php
src/Facades/Voyager.php
<?php namespace TCG\Voyager\Facades; use Illuminate\Support\Facades\Facade; class Voyager extends Facade { /** * Get the registered name of the component. * * @method static string image($file, $default = '') * @method static $this useModel($name, $object) * * @see \TCG\Voyager\Voya...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Alert/Components/TextComponent.php
src/Alert/Components/TextComponent.php
<?php namespace TCG\Voyager\Alert\Components; class TextComponent extends AbstractComponent { protected $text; public function create($text) { $this->text = $text; } public function render() { return "<p>{$this->text}</p>"; } }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Alert/Components/TitleComponent.php
src/Alert/Components/TitleComponent.php
<?php namespace TCG\Voyager\Alert\Components; class TitleComponent extends AbstractComponent { protected $title; public function create($title) { $this->title = $title; } public function render() { return "<strong>{$this->title}</strong>"; } }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Alert/Components/ButtonComponent.php
src/Alert/Components/ButtonComponent.php
<?php namespace TCG\Voyager\Alert\Components; class ButtonComponent extends AbstractComponent { protected $text; protected $link; protected $style; public function create($text, $link = '#', $style = 'default') { $this->text = $text; $this->link = $link; $this->style = $st...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Alert/Components/ComponentInterface.php
src/Alert/Components/ComponentInterface.php
<?php namespace TCG\Voyager\Alert\Components; interface ComponentInterface { public function render(); }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Alert/Components/AbstractComponent.php
src/Alert/Components/AbstractComponent.php
<?php namespace TCG\Voyager\Alert\Components; use TCG\Voyager\Alert; abstract class AbstractComponent implements ComponentInterface { protected $alert; public function setAlert(Alert $alert) { $this->alert = $alert; return $this; } public function __call($name, $arguments) ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Models/Page.php
src/Models/Page.php
<?php namespace TCG\Voyager\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Facades\Auth; use TCG\Voyager\Traits\Translatable; class Page extends Model { use Translatable; protected $translatable = ['title', 'slug', 'body']; /** * Statuses. */ public const STATUS_AC...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Models/MenuItem.php
src/Models/MenuItem.php
<?php namespace TCG\Voyager\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Facades\Route; use TCG\Voyager\Facades\Voyager; use TCG\Voyager\Traits\Translatable; class MenuItem extends Model { use Translatable; protected $translatorMethods = [ 'link' => 'translatorLink', ];...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Models/Translation.php
src/Models/Translation.php
<?php namespace TCG\Voyager\Models; use Illuminate\Database\Eloquent\Model; class Translation extends Model { protected $table = 'translations'; protected $fillable = ['table_name', 'column_name', 'foreign_key', 'locale', 'value']; }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Models/User.php
src/Models/User.php
<?php namespace TCG\Voyager\Models; use Carbon\Carbon; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Foundation\Auth\User as Authenticatable; use TCG\Voyager\Contracts\User as UserContract; use TCG\Voyager\Tests\Database\Factories\UserFactory; use TCG\Voyager\Traits\VoyagerUser; class User ex...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Models/Menu.php
src/Models/Menu.php
<?php namespace TCG\Voyager\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Str; use TCG\Voyager\Events\MenuDisplay; use TCG\Voyager\Facades\Voyager; /** * @todo: Refactor this class by using something like MenuBuilder Helper. */ class Menu extends Model ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Models/Category.php
src/Models/Category.php
<?php namespace TCG\Voyager\Models; use Illuminate\Database\Eloquent\Model; use TCG\Voyager\Facades\Voyager; use TCG\Voyager\Traits\Translatable; class Category extends Model { use Translatable; protected $translatable = ['slug', 'name']; protected $table = 'categories'; protected $fillable = ['sl...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Models/Role.php
src/Models/Role.php
<?php namespace TCG\Voyager\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use TCG\Voyager\Facades\Voyager; use TCG\Voyager\Tests\Database\Factories\RoleFactory; class Role extends Model { use HasFactory; protected $guarded = []; public function u...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Models/DataRow.php
src/Models/DataRow.php
<?php namespace TCG\Voyager\Models; use Illuminate\Database\Eloquent\Model; use TCG\Voyager\Traits\Translatable; class DataRow extends Model { use Translatable; protected $table = 'data_rows'; protected $guarded = []; public $timestamps = false; protected $translatable = ['display_name']; ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Models/Permission.php
src/Models/Permission.php
<?php namespace TCG\Voyager\Models; use Illuminate\Database\Eloquent\Model; use TCG\Voyager\Facades\Voyager; class Permission extends Model { protected $guarded = []; public function roles() { return $this->belongsToMany(Voyager::modelClass('Role')); } public static function generateFor...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Models/Setting.php
src/Models/Setting.php
<?php namespace TCG\Voyager\Models; use Illuminate\Database\Eloquent\Model; use TCG\Voyager\Events\SettingUpdated; class Setting extends Model { protected $table = 'settings'; protected $guarded = []; public $timestamps = false; protected $dispatchesEvents = [ 'updating' => SettingUpdated:...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Models/Post.php
src/Models/Post.php
<?php namespace TCG\Voyager\Models; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Facades\Auth; use TCG\Voyager\Facades\Voyager; use TCG\Voyager\Traits\Resizable; use TCG\Voyager\Traits\Translatable; class Post extends Model { use Translatable; use R...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Models/DataType.php
src/Models/DataType.php
<?php namespace TCG\Voyager\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Arr; use Illuminate\Support\Facades\DB; use TCG\Voyager\Database\Schema\SchemaManager; use TCG\Voyager\Facades\Voyager; use TCG\Voyager\Traits\Translatable; class DataType extends Model { use Translatable; pro...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Commands/ControllersCommand.php
src/Commands/ControllersCommand.php
<?php namespace TCG\Voyager\Commands; use Illuminate\Console\Command; use Illuminate\Filesystem\Filesystem; use Illuminate\Support\Str; use Symfony\Component\Console\Input\InputOption; class ControllersCommand extends Command { /** * The console command name. * * @var string */ protected ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Commands/InstallCommand.php
src/Commands/InstallCommand.php
<?php namespace TCG\Voyager\Commands; use Illuminate\Console\Command; use Illuminate\Filesystem\Filesystem; use Illuminate\Support\Composer; use Symfony\Component\Console\Input\InputOption; use TCG\Voyager\Providers\VoyagerDummyServiceProvider; use TCG\Voyager\VoyagerServiceProvider; class InstallCommand extends Com...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Commands/AdminCommand.php
src/Commands/AdminCommand.php
<?php namespace TCG\Voyager\Commands; use Illuminate\Console\Command; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\Hash; use Illuminate\Support\Str; use Symfony\Component\Console\Input\InputOption; use TCG\Voyager\Facades\Voyager; class AdminCommand extends Command { /** * The console...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Commands/MakeModelCommand.php
src/Commands/MakeModelCommand.php
<?php namespace TCG\Voyager\Commands; use Illuminate\Foundation\Console\ModelMakeCommand; use Symfony\Component\Console\Input\InputOption; class MakeModelCommand extends ModelMakeCommand { /** * The console command name. * * @var string */ protected $name = 'voyager:make:model'; /** ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Widgets/PageDimmer.php
src/Widgets/PageDimmer.php
<?php namespace TCG\Voyager\Widgets; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Str; use TCG\Voyager\Facades\Voyager; class PageDimmer extends BaseDimmer { /** * The configuration array. * * @var array */ protected $config = []; /** * Treat this method as a cont...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Widgets/BaseDimmer.php
src/Widgets/BaseDimmer.php
<?php namespace TCG\Voyager\Widgets; use Arrilot\Widgets\AbstractWidget; abstract class BaseDimmer extends AbstractWidget { /** * Determine if the widget should be displayed. * * @return bool */ public function shouldBeDisplayed() { return true; } }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Widgets/UserDimmer.php
src/Widgets/UserDimmer.php
<?php namespace TCG\Voyager\Widgets; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Str; use TCG\Voyager\Facades\Voyager; class UserDimmer extends BaseDimmer { /** * The configuration array. * * @var array */ protected $config = []; /** * Treat this method as a cont...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Widgets/PostDimmer.php
src/Widgets/PostDimmer.php
<?php namespace TCG\Voyager\Widgets; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Str; use TCG\Voyager\Facades\Voyager; class PostDimmer extends BaseDimmer { /** * The configuration array. * * @var array */ protected $config = []; /** * Treat this method as a cont...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Providers/VoyagerDummyServiceProvider.php
src/Providers/VoyagerDummyServiceProvider.php
<?php namespace TCG\Voyager\Providers; use Arrilot\Widgets\ServiceProvider as WidgetServiceProvider; use Illuminate\Support\ServiceProvider; use TCG\Voyager\Seed; class VoyagerDummyServiceProvider extends ServiceProvider { /** * Register the application services. */ public function register() {...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Providers/VoyagerEventServiceProvider.php
src/Providers/VoyagerEventServiceProvider.php
<?php namespace TCG\Voyager\Providers; use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; use Illuminate\Support\Facades\Event; use TCG\Voyager\Events; use TCG\Voyager\Listeners; class VoyagerEventServiceProvider extends ServiceProvider { /** * The event listener mappings f...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/Routing.php
src/Events/Routing.php
<?php namespace TCG\Voyager\Events; use Illuminate\Queue\SerializesModels; class Routing { use SerializesModels; public $router; public function __construct() { $this->router = app('router'); // @deprecate // event('voyager.routing', $this->router); } }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/RoutingAdminAfter.php
src/Events/RoutingAdminAfter.php
<?php namespace TCG\Voyager\Events; use Illuminate\Queue\SerializesModels; class RoutingAdminAfter { use SerializesModels; public $router; public function __construct() { $this->router = app('router'); // @deprecate // event('voyager.admin.routing.after', $this->rou...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/BreadDataAdded.php
src/Events/BreadDataAdded.php
<?php namespace TCG\Voyager\Events; use Illuminate\Queue\SerializesModels; use TCG\Voyager\Models\DataType; class BreadDataAdded { use SerializesModels; public $dataType; public $data; public function __construct(DataType $dataType, $data) { $this->dataType = $dataType; $this-...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/TableChanged.php
src/Events/TableChanged.php
<?php namespace TCG\Voyager\Events; use Illuminate\Queue\SerializesModels; class TableChanged { use SerializesModels; public $name; public function __construct($name) { $this->name = $name; } }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/BreadImagesDeleted.php
src/Events/BreadImagesDeleted.php
<?php namespace TCG\Voyager\Events; use Illuminate\Queue\SerializesModels; class BreadImagesDeleted { use SerializesModels; public $data; public $images; public function __construct($data, $images) { $this->data = $data; $this->images = $images; } }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/RoutingAfter.php
src/Events/RoutingAfter.php
<?php namespace TCG\Voyager\Events; use Illuminate\Queue\SerializesModels; class RoutingAfter { use SerializesModels; public $router; public function __construct() { $this->router = app('router'); // @deprecate // event('voyager.routing.after', $this->router); }...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/BreadDataDeleted.php
src/Events/BreadDataDeleted.php
<?php namespace TCG\Voyager\Events; use Illuminate\Queue\SerializesModels; use TCG\Voyager\Models\DataType; class BreadDataDeleted { use SerializesModels; public $dataType; public $data; public function __construct(DataType $dataType, $data) { $this->dataType = $dataType; $thi...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/BreadDataRestored.php
src/Events/BreadDataRestored.php
<?php namespace TCG\Voyager\Events; use Illuminate\Queue\SerializesModels; use TCG\Voyager\Models\DataType; class BreadDataRestored { use SerializesModels; public $dataType; public $data; public function __construct(DataType $dataType, $data) { $this->dataType = $dataType; $th...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/MenuDisplay.php
src/Events/MenuDisplay.php
<?php namespace TCG\Voyager\Events; use Illuminate\Queue\SerializesModels; use TCG\Voyager\Models\Menu; class MenuDisplay { use SerializesModels; public $menu; public function __construct(Menu $menu) { $this->menu = $menu; // @deprecate // event('voyager.menu.displa...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/BreadChanged.php
src/Events/BreadChanged.php
<?php namespace TCG\Voyager\Events; use Illuminate\Queue\SerializesModels; use TCG\Voyager\Models\DataType; class BreadChanged { use SerializesModels; public $dataType; public $data; public $changeType; public function __construct(DataType $dataType, $data, $changeType) { $this->d...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/TableDeleted.php
src/Events/TableDeleted.php
<?php namespace TCG\Voyager\Events; use Illuminate\Queue\SerializesModels; class TableDeleted { use SerializesModels; public $name; public function __construct($name) { $this->name = $name; event(new TableChanged($name, 'Deleted')); } }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/BreadUpdated.php
src/Events/BreadUpdated.php
<?php namespace TCG\Voyager\Events; use Illuminate\Queue\SerializesModels; use TCG\Voyager\Models\DataType; class BreadUpdated { use SerializesModels; public $dataType; public $data; public function __construct(DataType $dataType, $data) { $this->dataType = $dataType; $this->d...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/SettingUpdated.php
src/Events/SettingUpdated.php
<?php namespace TCG\Voyager\Events; use Illuminate\Queue\SerializesModels; use TCG\Voyager\Models\Setting; class SettingUpdated { use SerializesModels; public $setting; public function __construct(Setting $setting) { $this->setting = $setting; } }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/BreadDataUpdated.php
src/Events/BreadDataUpdated.php
<?php namespace TCG\Voyager\Events; use Illuminate\Queue\SerializesModels; use TCG\Voyager\Models\DataType; class BreadDataUpdated { use SerializesModels; public $dataType; public $data; public function __construct(DataType $dataType, $data) { $this->dataType = $dataType; $thi...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/TableAdded.php
src/Events/TableAdded.php
<?php namespace TCG\Voyager\Events; use Illuminate\Queue\SerializesModels; use TCG\Voyager\Database\Schema\Table; class TableAdded { use SerializesModels; public $table; public function __construct(Table $table) { $this->table = $table; event(new TableChanged($table->name, 'Added')...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/FormFieldsRegistered.php
src/Events/FormFieldsRegistered.php
<?php namespace TCG\Voyager\Events; use Illuminate\Queue\SerializesModels; class FormFieldsRegistered { use SerializesModels; public $fields; public function __construct(array $fields) { $this->fields = $fields; // @deprecate // event('voyager.form-fields.registered...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/FileDeleted.php
src/Events/FileDeleted.php
<?php namespace TCG\Voyager\Events; class FileDeleted { public $path; public function __construct($path) { $this->path = $path; } }
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/BreadDataChanged.php
src/Events/BreadDataChanged.php
<?php namespace TCG\Voyager\Events; use Illuminate\Queue\SerializesModels; use TCG\Voyager\Models\DataType; class BreadDataChanged { use SerializesModels; public $dataType; public $data; public $changeType; public function __construct(DataType $dataType, $data, $changeType) { $thi...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false