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/Events/RoutingAdmin.php | src/Events/RoutingAdmin.php | <?php
namespace TCG\Voyager\Events;
use Illuminate\Queue\SerializesModels;
class RoutingAdmin
{
use SerializesModels;
public $router;
public function __construct()
{
$this->router = app('router');
// @deprecate
//
event('voyager.admin.routing', $this->router);
}... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/BreadDeleted.php | src/Events/BreadDeleted.php | <?php
namespace TCG\Voyager\Events;
use Illuminate\Queue\SerializesModels;
use TCG\Voyager\Models\DataType;
class BreadDeleted
{
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/AlertsCollection.php | src/Events/AlertsCollection.php | <?php
namespace TCG\Voyager\Events;
use Illuminate\Queue\SerializesModels;
class AlertsCollection
{
use SerializesModels;
public $collection;
public function __construct(array $collection)
{
$this->collection = $collection;
// @deprecate
//
event('voyager.alerts.col... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/MediaFileAdded.php | src/Events/MediaFileAdded.php | <?php
namespace TCG\Voyager\Events;
use Illuminate\Queue\SerializesModels;
class MediaFileAdded
{
use SerializesModels;
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/TableUpdated.php | src/Events/TableUpdated.php | <?php
namespace TCG\Voyager\Events;
use Illuminate\Queue\SerializesModels;
class TableUpdated
{
use SerializesModels;
public $name;
public function __construct(array $name)
{
$this->name = $name;
event(new TableChanged($name['name'], 'Updated'));
}
}
| php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Events/BreadAdded.php | src/Events/BreadAdded.php | <?php
namespace TCG\Voyager\Events;
use Illuminate\Queue\SerializesModels;
use TCG\Voyager\Models\DataType;
class BreadAdded
{
use SerializesModels;
public $dataType;
public $data;
public function __construct(DataType $dataType, $data)
{
$this->dataType = $dataType;
$this->dat... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/TimeHandler.php | src/FormFields/TimeHandler.php | <?php
namespace TCG\Voyager\FormFields;
class TimeHandler extends AbstractHandler
{
protected $codename = 'time';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.time', [
'row' => $row,
'options' ... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/DateHandler.php | src/FormFields/DateHandler.php | <?php
namespace TCG\Voyager\FormFields;
class DateHandler extends AbstractHandler
{
protected $codename = 'date';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.date', [
'row' => $row,
'options' ... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/SelectDropdownHandler.php | src/FormFields/SelectDropdownHandler.php | <?php
namespace TCG\Voyager\FormFields;
class SelectDropdownHandler extends AbstractHandler
{
protected $codename = 'select_dropdown';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.select_dropdown', [
'row' =>... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/MultipleCheckboxHandler.php | src/FormFields/MultipleCheckboxHandler.php | <?php
namespace TCG\Voyager\FormFields;
class MultipleCheckboxHandler extends AbstractHandler
{
protected $codename = 'multiple_checkbox';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.multiple_checkbox', [
'row' ... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/HiddenHandler.php | src/FormFields/HiddenHandler.php | <?php
namespace TCG\Voyager\FormFields;
class HiddenHandler extends AbstractHandler
{
protected $codename = 'hidden';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.hidden', [
'row' => $row,
'option... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/MultipleImagesHandler.php | src/FormFields/MultipleImagesHandler.php | <?php
namespace TCG\Voyager\FormFields;
class MultipleImagesHandler extends AbstractHandler
{
protected $codename = 'multiple_images';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.multiple_images', [
'row' =>... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/CodeEditorHandler.php | src/FormFields/CodeEditorHandler.php | <?php
namespace TCG\Voyager\FormFields;
class CodeEditorHandler extends AbstractHandler
{
protected $codename = 'code_editor';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.code_editor', [
'row' => $row,
... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/ColorHandler.php | src/FormFields/ColorHandler.php | <?php
namespace TCG\Voyager\FormFields;
class ColorHandler extends AbstractHandler
{
protected $codename = 'color';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.color', [
'row' => $row,
'options' ... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/CheckboxHandler.php | src/FormFields/CheckboxHandler.php | <?php
namespace TCG\Voyager\FormFields;
class CheckboxHandler extends AbstractHandler
{
protected $codename = 'checkbox';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.checkbox', [
'row' => $row,
'... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/SelectMultipleHandler.php | src/FormFields/SelectMultipleHandler.php | <?php
namespace TCG\Voyager\FormFields;
class SelectMultipleHandler extends AbstractHandler
{
protected $codename = 'select_multiple';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.select_multiple', [
'row' =>... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/CoordinatesHandler.php | src/FormFields/CoordinatesHandler.php | <?php
namespace TCG\Voyager\FormFields;
class CoordinatesHandler extends AbstractHandler
{
protected $supports = [
'mysql',
'pgsql',
];
protected $codename = 'coordinates';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/TextAreaHandler.php | src/FormFields/TextAreaHandler.php | <?php
namespace TCG\Voyager\FormFields;
class TextAreaHandler extends AbstractHandler
{
protected $codename = 'text_area';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.text_area', [
'row' => $row,
... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/RadioBtnHandler.php | src/FormFields/RadioBtnHandler.php | <?php
namespace TCG\Voyager\FormFields;
class RadioBtnHandler extends AbstractHandler
{
protected $name = 'Radio Button';
protected $codename = 'radio_btn';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.radio_btn', [
... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/TimestampHandler.php | src/FormFields/TimestampHandler.php | <?php
namespace TCG\Voyager\FormFields;
class TimestampHandler extends AbstractHandler
{
protected $codename = 'timestamp';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.timestamp', [
'row' => $row,
... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/MarkdownEditorHandler.php | src/FormFields/MarkdownEditorHandler.php | <?php
namespace TCG\Voyager\FormFields;
class MarkdownEditorHandler extends AbstractHandler
{
protected $codename = 'markdown_editor';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.markdown_editor', [
'row' =>... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/NumberHandler.php | src/FormFields/NumberHandler.php | <?php
namespace TCG\Voyager\FormFields;
class NumberHandler extends AbstractHandler
{
protected $codename = 'number';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.number', [
'row' => $row,
'option... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/AbstractHandler.php | src/FormFields/AbstractHandler.php | <?php
namespace TCG\Voyager\FormFields;
use Illuminate\Support\Str;
use TCG\Voyager\Traits\Renderable;
abstract class AbstractHandler implements HandlerInterface
{
use Renderable;
protected $name;
protected $codename;
protected $supports = [];
public function handle($row, $dataType, $dataTypeCo... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/FileHandler.php | src/FormFields/FileHandler.php | <?php
namespace TCG\Voyager\FormFields;
class FileHandler extends AbstractHandler
{
protected $codename = 'file';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.file', [
'row' => $row,
'options' ... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/ImageHandler.php | src/FormFields/ImageHandler.php | <?php
namespace TCG\Voyager\FormFields;
class ImageHandler extends AbstractHandler
{
protected $codename = 'image';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.image', [
'row' => $row,
'options' ... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/MediaPickerHandler.php | src/FormFields/MediaPickerHandler.php | <?php
namespace TCG\Voyager\FormFields;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Str;
class MediaPickerHandler extends AbstractHandler
{
protected $codename = 'media_picker';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
$content = '';
if... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/PasswordHandler.php | src/FormFields/PasswordHandler.php | <?php
namespace TCG\Voyager\FormFields;
class PasswordHandler extends AbstractHandler
{
protected $codename = 'password';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.password', [
'row' => $row,
'... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/RichTextBoxHandler.php | src/FormFields/RichTextBoxHandler.php | <?php
namespace TCG\Voyager\FormFields;
class RichTextBoxHandler extends AbstractHandler
{
protected $codename = 'rich_text_box';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.rich_text_box', [
'row' => $row,
... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/TextHandler.php | src/FormFields/TextHandler.php | <?php
namespace TCG\Voyager\FormFields;
class TextHandler extends AbstractHandler
{
protected $codename = 'text';
public function createContent($row, $dataType, $dataTypeContent, $options)
{
return view('voyager::formfields.text', [
'row' => $row,
'options' ... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/HandlerInterface.php | src/FormFields/HandlerInterface.php | <?php
namespace TCG\Voyager\FormFields;
interface HandlerInterface
{
public function handle($row, $dataType, $dataTypeContent);
public function createContent($row, $dataType, $dataTypeContent, $options);
public function supports($driver);
public function getCodename();
public function getName(... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/After/DescriptionHandler.php | src/FormFields/After/DescriptionHandler.php | <?php
namespace TCG\Voyager\FormFields\After;
class DescriptionHandler extends AbstractHandler
{
protected $codename = 'description';
public function visible($row, $dataType, $dataTypeContent, $options)
{
if (!isset($options->description)) {
return false;
}
return !em... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/After/AbstractHandler.php | src/FormFields/After/AbstractHandler.php | <?php
namespace TCG\Voyager\FormFields\After;
use TCG\Voyager\Traits\Renderable;
abstract class AbstractHandler implements HandlerInterface
{
use Renderable;
public function visible($row, $dataType, $dataTypeContent, $options)
{
return true;
}
public function handle($row, $dataType, $da... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/FormFields/After/HandlerInterface.php | src/FormFields/After/HandlerInterface.php | <?php
namespace TCG\Voyager\FormFields\After;
interface HandlerInterface
{
public function visible($row, $dataType, $dataTypeContent, $options);
public function handle($row, $dataType, $dataTypeContent);
public function getCodename();
public function createContent($row, $dataType, $dataTypeContent,... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Policies/PostPolicy.php | src/Policies/PostPolicy.php | <?php
namespace TCG\Voyager\Policies;
use TCG\Voyager\Contracts\User;
class PostPolicy extends BasePolicy
{
/**
* Determine if the given model can be viewed by the user.
*
* @param \TCG\Voyager\Contracts\User $user
* @param $model
*
* @return bool
*/
public function read(U... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Policies/UserPolicy.php | src/Policies/UserPolicy.php | <?php
namespace TCG\Voyager\Policies;
use TCG\Voyager\Contracts\User;
class UserPolicy extends BasePolicy
{
/**
* Determine if the given model can be viewed by the user.
*
* @param \TCG\Voyager\Contracts\User $user
* @param $model
*
* @return bool
*/
public function read(U... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Policies/MenuItemPolicy.php | src/Policies/MenuItemPolicy.php | <?php
namespace TCG\Voyager\Policies;
use TCG\Voyager\Contracts\User;
use TCG\Voyager\Facades\Voyager;
class MenuItemPolicy extends BasePolicy
{
protected static $datatypes = null;
protected static $permissions = null;
/**
* Check if user has an associated permission.
*
* @param User $u... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Policies/BasePolicy.php | src/Policies/BasePolicy.php | <?php
namespace TCG\Voyager\Policies;
use Illuminate\Auth\Access\HandlesAuthorization;
use TCG\Voyager\Contracts\User;
use TCG\Voyager\Facades\Voyager;
class BasePolicy
{
use HandlesAuthorization;
protected static $datatypes = [];
/**
* Handle all requested permission checks.
*
* @param ... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/src/Policies/SettingPolicy.php | src/Policies/SettingPolicy.php | <?php
namespace TCG\Voyager\Policies;
use TCG\Voyager\Contracts\User;
class SettingPolicy extends BasePolicy
{
/**
* Determine if the given user can browse the model.
*
* @param \TCG\Voyager\Contracts\User $user
* @param $model
*
* @return bool
*/
public function browse(Us... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/RolesTest.php | tests/RolesTest.php | <?php
namespace TCG\Voyager\Tests;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Illuminate\Support\Facades\Auth;
use TCG\Voyager\Models\Role;
class RolesTest extends TestCase
{
use DatabaseTransactions;
protected $user;
protected $permission_id = 3;
public function setUp(): void
... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/DisabledTestException.php | tests/DisabledTestException.php | <?php
namespace TCG\Voyager\Tests;
use Illuminate\Foundation\Exceptions\Handler;
class DisabledTestException extends Handler
{
public function __construct()
{
}
public function report($e)
{
}
public function render($request, $e)
{
throw $e;
}
}
| php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/AlertTest.php | tests/AlertTest.php | <?php
namespace TCG\Voyager\Tests;
use TCG\Voyager\Alert;
use TCG\Voyager\Facades\Voyager;
class AlertTest extends TestCase
{
public function testAlertsAreRegistered()
{
$alert = (new Alert('test', 'warning'))
->title('Title');
Voyager::addAlert($alert);
$alerts = Voyage... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/BreadMediaUploadTest.php | tests/BreadMediaUploadTest.php | <?php
namespace TCG\Voyager\Tests;
use Illuminate\Http\UploadedFile;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Storage;
use TCG\Voyager\Models\DataRow;
use TCG\Voyager\Models\DataType;
use TCG\Voyager\Models\Page;
class BreadMediaUploadTest extends TestCase
{
protected $file = 'test.txt... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/FormfieldsTest.php | tests/FormfieldsTest.php | <?php
namespace TCG\Voyager\Tests;
use Illuminate\Http\UploadedFile;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Facades\Schema;
use TCG\Voyager\Models\Category;
use TCG\Voyager\Models\DataType;
use TCG\Voyager\Models\Permission;
class FormfieldsTest extends TestC... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/CompassTest.php | tests/CompassTest.php | <?php
namespace TCG\Voyager\Tests;
use Illuminate\Support\Facades\Auth;
class CompassTest extends TestCase
{
public function setUp(): void
{
parent::setUp();
Auth::loginUsingId(1);
}
public function tearDown(): void
{
parent::tearDown();
if (file_exists(base_pat... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/EventTest.php | tests/EventTest.php | <?php
namespace TCG\Voyager\Tests;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Illuminate\Http\UploadedFile;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Event;
use Illuminate\Support\Facades\Storage;
use TCG\Voyager\Events\BreadAdded;
use TCG\Voyager\Events\BreadDataAdded;
use ... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/MultilingualTest.php | tests/MultilingualTest.php | <?php
namespace TCG\Voyager\Tests;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\DB;
use TCG\Voyager\Facades\Voyager;
use TCG\Voyager\Models\Page;
use TCG\Voyager\Traits\Translatable;
use TCG\Voyager\Translator;
use TCG\Voyager\Translator\Collection;
class MultilingualTest extends TestCase
{... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/TestCase.php | tests/TestCase.php | <?php
namespace TCG\Voyager\Tests;
use Illuminate\Contracts\Debug\ExceptionHandler;
use Orchestra\Testbench\BrowserKit\TestCase as OrchestraTestCase;
use TCG\Voyager\Models\User;
use TCG\Voyager\VoyagerServiceProvider;
class TestCase extends OrchestraTestCase
{
protected $withDummy = true;
public function s... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/ViewEventTest.php | tests/ViewEventTest.php | <?php
namespace TCG\Voyager\Tests;
use TCG\Voyager\Facades\Voyager;
class ViewEventTest extends TestCase
{
public $eventTrigered = false;
public function setUp(): void
{
parent::setUp();
$this->disableExceptionHandling();
// Add test view
app('view')->addLocation(__DIR_... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/MenuTest.php | tests/MenuTest.php | <?php
namespace TCG\Voyager\Tests;
use Illuminate\Support\Facades\Auth;
use TCG\Voyager\Models\Menu;
class MenuTest extends TestCase
{
public function setUp(): void
{
parent::setUp();
Auth::loginUsingId(1);
}
public function testCanRenameMenu()
{
$menu = Menu::where('nam... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/LoginTest.php | tests/LoginTest.php | <?php
namespace TCG\Voyager\Tests;
use Illuminate\Support\Facades\Auth;
class LoginTest extends TestCase
{
public function testSuccessfulLoginWithDefaultCredentials()
{
$this->visit(route('voyager.login'))
->type('admin@admin.com', 'email')
->type('password', 'password')
... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/RouteTest.php | tests/RouteTest.php | <?php
namespace TCG\Voyager\Tests;
class RouteTest extends TestCase
{
/**
* A basic functional test example.
*
* @return void
*/
public function testGetRoutes()
{
$this->disableExceptionHandling();
$this->visit(route('voyager.login'));
$this->type('admin@admin.... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/AssetsTest.php | tests/AssetsTest.php | <?php
namespace TCG\Voyager\Tests;
use Illuminate\Support\Facades\Auth;
class AssetsTest extends TestCase
{
protected $prefix = '/voyager-assets?path=';
public function setUp(): void
{
parent::setUp();
Auth::loginUsingId(1);
}
public function testCanOpenFileInAssets()
{
... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/bootstrap.php | tests/bootstrap.php | <?php
/*
|--------------------------------------------------------------------------
| Register The Composer Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader
| for our application. We just need to utilize it... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/UserProfileTest.php | tests/UserProfileTest.php | <?php
namespace TCG\Voyager\Tests;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Hash;
use TCG\Voyager\Models\Role;
use TCG\Voyager\Models\User;
class UserProfileTest extends TestCase
{
use DatabaseTr... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/DatabaseTest.php | tests/DatabaseTest.php | <?php
namespace TCG\Voyager\Tests;
use Doctrine\DBAL\Schema\SchemaException;
use Illuminate\Support\Facades\Auth;
use TCG\Voyager\Database\Schema\SchemaManager;
use TCG\Voyager\Database\Schema\Table;
use TCG\Voyager\Database\Types\Type;
use TCG\Voyager\Traits\AlertsMessages;
class DatabaseTest extends TestCase
{
... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/SearchTest.php | tests/SearchTest.php | <?php
namespace TCG\Voyager\Tests;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Route;
use TCG\Voyager\Http\Controllers\VoyagerBaseController;
use TCG\Voyager\Models\DataRow;
use TCG\Voyager\Models\DataType;
us... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/SettingsTest.php | tests/SettingsTest.php | <?php
namespace TCG\Voyager\Tests;
use Illuminate\Support\Facades\Auth;
use TCG\Voyager\Models\Setting;
class SettingsTest extends TestCase
{
protected $user;
public function setUp(): void
{
parent::setUp();
$this->user = Auth::loginUsingId(1);
session()->setPreviousUrl(route('v... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/PermissionTest.php | tests/PermissionTest.php | <?php
namespace TCG\Voyager\Tests;
use Illuminate\Support\Facades\Auth;
use TCG\Voyager\Models\Permission;
use TCG\Voyager\Models\Role;
class PermissionTest extends TestCase
{
protected $user;
public function setUp(): void
{
parent::setUp();
Auth::loginUsingId(1);
$this->user = ... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/Feature/SeederTest.php | tests/Feature/SeederTest.php | <?php
namespace TCG\Voyager\Tests\Feature;
use TCG\Voyager\Tests\TestCase;
class SeederTest extends TestCase
{
public function setUp(): void
{
parent::setUp();
$this->install();
}
/**
* Test manually seeding is working.
*/
public function testVoyagerDatabaseSeederCanBe... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/Feature/DashboardTest.php | tests/Feature/DashboardTest.php | <?php
namespace TCG\Voyager\Tests\Feature;
use Illuminate\Support\Facades\Auth;
use TCG\Voyager\Facades\Voyager;
use TCG\Voyager\Tests\TestCase;
class DashboardTest extends TestCase
{
public function setUp(): void
{
parent::setUp();
$this->install();
}
/**
* Test Dashboard Widg... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/views/test.blade.php | tests/views/test.blade.php | This is a test | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/views/foo.blade.php | tests/views/foo.blade.php | This is the foo view | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/views/hello.blade.php | tests/views/hello.blade.php | Hello {{ $name }}! | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/Unit/VoyagerTest.php | tests/Unit/VoyagerTest.php | <?php
namespace TCG\Voyager\Tests\Unit;
use Illuminate\Support\Facades\Config;
use TCG\Voyager\Facades\Voyager;
use TCG\Voyager\Tests\TestCase;
class VoyagerTest extends TestCase
{
/**
* Dimmers returns an array filled with widget collections.
*
* This test will make sure that the dimmers method w... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/Unit/Actions/AbstractActionTest.php | tests/Unit/Actions/AbstractActionTest.php | <?php
namespace TCG\Voyager\Tests\Unit\Actions;
use TCG\Voyager\Actions\AbstractAction;
use TCG\Voyager\Facades\Voyager;
use TCG\Voyager\Models\User;
use TCG\Voyager\Tests\TestCase;
class AbstractActionTest extends TestCase
{
/**
* The users DataType instance.
*
* @var \TCG\Voyager\Models\DataType... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/Models/PostTest.php | tests/Models/PostTest.php | <?php
namespace TCG\Voyager\Tests;
use Illuminate\Support\Facades\Auth;
use TCG\Voyager\Models\Category;
use TCG\Voyager\Models\Post;
class PostTest extends TestCase
{
public function testCanCreateAPageWithLoggedInUserAutoAssigned()
{
$user = Auth::loginUsingId(1);
$post = new Post();
... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/Models/CategoryTest.php | tests/Models/CategoryTest.php | <?php
namespace TCG\Voyager\Tests;
use Illuminate\Support\Facades\Auth;
use TCG\Voyager\Models\Category;
use TCG\Voyager\Models\Post;
class CategoryTest extends TestCase
{
public function testCanCreateACategoryWithLoggedInUser()
{
$user = Auth::loginUsingId(1);
$category = new Category();
... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/Models/PageTest.php | tests/Models/PageTest.php | <?php
namespace TCG\Voyager\Tests;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Str;
use TCG\Voyager\Models\Page;
class PageTest extends TestCase
{
public function testCanCreateAPageWithLoggedInUserAutoAssigned()
{
$user = Auth::loginUsingId(1);
$page = new Page();
$p... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/database/factories/RoleFactory.php | tests/database/factories/RoleFactory.php | <?php
namespace TCG\Voyager\Tests\Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
class RoleFactory extends Factory
{
protected $model = \TCG\Voyager\Models\Role::class;
public function definition()
{
$role = $this->faker->word();
return [
'name' ... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/database/factories/UserFactory.php | tests/database/factories/UserFactory.php | <?php
namespace TCG\Voyager\Tests\Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
class UserFactory extends Factory
{
protected $model = \TCG\Voyager\Models\User::class;
public function definition()
{
static $password;
return [
... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/Stubs/Widgets/InAccessibleDimmer.php | tests/Stubs/Widgets/InAccessibleDimmer.php | <?php
namespace TCG\Voyager\Tests\Stubs\Widgets;
use Arrilot\Widgets\AbstractWidget;
class InAccessibleDimmer extends AbstractWidget
{
/**
* The configuration array.
*
* @var array
*/
protected $config = [];
/**
* Treat this method as a controller action.
* Return view() or... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/tests/Stubs/Widgets/AccessibleDimmer.php | tests/Stubs/Widgets/AccessibleDimmer.php | <?php
namespace TCG\Voyager\Tests\Stubs\Widgets;
use Arrilot\Widgets\AbstractWidget;
class AccessibleDimmer extends AbstractWidget
{
/**
* The configuration array.
*
* @var array
*/
protected $config = [];
/**
* Treat this method as a controller action.
* Return view() or o... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/routes/voyager.php | routes/voyager.php | <?php
use Illuminate\Support\Str;
use TCG\Voyager\Events\Routing;
use TCG\Voyager\Events\RoutingAdmin;
use TCG\Voyager\Events\RoutingAdminAfter;
use TCG\Voyager\Events\RoutingAfter;
use TCG\Voyager\Facades\Voyager;
/*
|--------------------------------------------------------------------------
| Voyager Routes
|------... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/km/analytics.php | publishable/lang/km/analytics.php | <?php
return [
'by_pageview' => 'α
ααα½αααΎαααααα',
'by_sessions' => 'Sessions',
'by_users' => 'α’αααααααΎααααΆαα',
'no_client_id' => 'ααΎααααΈααΎαααΆααα·ααΆα α’αααααΉαααααΌαααα½αααΆαααααααααΆαααααΆαααΈαααααααα·ααΆα google α αΎαααααααααΆαα
αααα»αααΆααααααααααα’ααααααααΆαααα <code>google... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/km/generic.php | publishable/lang/km/generic.php | <?php
return [
'is_rtl' => 'false',
'action' => 'ααααα·ααα·ααααΆα',
'actions' => 'ααααα·ααα·ααααΆα',
'add' => 'αααααα',
'add_folder' => 'ααααααααα―αααΆα',
'add_new' => 'ααααααααααΈ',
'all_done' ... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/km/theme.php | publishable/lang/km/theme.php | <?php
return [
'footer_copyright' => 'αααααΎαααα <i class="voyager-heart"></i> ',
'footer_copyright2' => 'ααα·αααΆαα½α Rum αα·α Rum α
αααΎαααα',
];
| php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/km/dimmer.php | publishable/lang/km/dimmer.php | <?php
return [
'page' => 'ααααα|ααααα',
'page_link_text' => 'ααΎααααααααΆααα’αα',
'page_text' => 'αααα’αααααΆα :count :stringα ααΌαα
α»α
αααΌαα»αααΆααααααααΎααααΈααΎααααααααΆααα’ααα',
'post' => 'α’ααααα|α’ααααα',
'post_link_text' => 'ααΎαα’αααααααΆααα’αα',
'post_text' => 'αααα’αααααΆα :cou... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/km/seeders.php | publishable/lang/km/seeders.php | <?php
return [
'data_rows' => [
'author' => 'α’ααααα·αααα',
'avatar' => 'ααΌαααααΆα',
'body' => 'αα½αααα
ααααΈ',
'category' => 'αααααα',
'created_at' => 'ααΆαααα·α
αααααααααΎα',
'display_name' => 'ααααααααααΆαααααα αΆα',
'... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/km/datatable.php | publishable/lang/km/datatable.php | <?php
// DataTable translations from: https://github.com/DataTables/Plugins/tree/master/i18n
return [
'sEmptyTable' => 'αα·αααΆααα·αααααααααα»αααΆααΆαααααα',
'sInfo' => 'αααα αΆααα½αααΈ _START_ αααααΈ _END_ αααα»αα
αααα _TOTAL_ αα½α',
'sInfoEmpty' => 'αααα αΆααα½αααΈ 0 αααααΈ 0 αααα»αα
αααα 0 αα½α',
'sInf... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/km/media.php | publishable/lang/km/media.php | <?php
return [
'add_new_folder' => 'ααααααααα―αααΆαααααΈ',
'audio_support' => 'αααααα·ααΈαα»ααααα·αααΆαααααα·ααααααααα‘αααα',
'create_new_folder' => 'αααααΎαααα―αααΆαααααΈ',
'delete_folder_question' => 'ααΆααα»αααα―αααΆαααΆαα·αααααΌαα―αααΆαααΆααα’αααααααΆααα
αααα»αααα―αααΆαααα',
'delete_question' =>... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/km/post.php | publishable/lang/km/post.php | <?php
return [
'additional_fields'=> 'ααααααααααα»αααααααααααααΆα',
'category' => 'ααααααα’ααααα',
'content' => 'α’ααααα',
'details' => 'ααα
ααααΈααα’α·α',
'excerpt' => 'ααααααα<small>ααΆααα·αααααΆααΌα
αααααααΆαααα</small>',
'image' => 'ααΌαααΆα',
'meta_descrip... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/km/compass.php | publishable/lang/km/compass.php | <?php
return [
'welcome' => 'ααΌαααααΆααααααααΆαα Voyager Compass α αααααα·ααΈααα’ααΈαα½ααααααΌαααΆαααααΈαα·αααααΎααααΈα
ααα’α»ααα½αααΆαα
αα·ααα
ααααΉαααααΌαα
αα
αααα»ααααααααα α’αααααΉαααααΎαααααΆα αα·ααα·α
αα
ααΆαααααααΆαααΆα
αααΎα ααΎααααΈαα½αααααΆαα’ααααα
αααα’ααααααααΎααααααα·ααΈααααα’αααα',
'links' => [
'title' ... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/km/database.php | publishable/lang/km/database.php | <?php
return [
'add_new_column' => 'αααααααα½αααααααΈ',
'add_softdeletes' => 'ααααααααΆααα»αα
αααααααααααααααααα·',
'add_timestamps' => 'ααααααααΆααα·ααααααααΆααααΈ',
'already_exists' => 'ααΆααα½α
α αΎα',
'already_exists_table' => 'ααΆααΆα:tableααΆααα½α
α αΎα',
'bread_... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/km/login.php | publishable/lang/km/login.php | <?php
return [
'loggingin' => 'αααα»αα
αΌαααααΎααααΆαααααααααα',
'signin_below' => 'α
αΌαααααΎααααΆαααααααααααααα
α»α
αα
ααΆαααααα:',
'welcome' => 'ααααΆααααααΆαααααααα Voyager αααααΆααααααααααααααααααααααααα·αααααααααααααααα Laravel',
];
| php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/km/profile.php | publishable/lang/km/profile.php | <?php
return [
'avatar' => 'ααΌαααααΆα',
'edit' => 'ααααααα½αααααααΆα',
'edit_user' => 'ααααααα½αααααααΆαα’αααααααΎααααΆαα',
'password' => 'ααΆααααααααΆαα',
'password_hint' => 'αα»αααΆαααααΎααααΈα’ααααΆααΌα
αααααααΎα',
'role' => 'αα½ααΆααΈ',
'roles' =... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/km/bread.php | publishable/lang/km/bread.php | <?php
return [
'add_bread' => 'αααααΎααααααα’ααααΆααΆαααα',
'bread_crud_actions' => 'ααααα/αααααααΆα CRUD',
'bread_info' => 'ααααααΆαααααα',
'controller_name_hint' => 'α§ PageController, ααΎαααα’ααααα»αα
ααααΆααααΎααααΆααααααα Contoroller',
'create_bread_for_table' => 'αααααΎααααααα... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/km/menu_builder.php | publishable/lang/km/menu_builder.php | <?php
return [
'color' => 'αααααΆ RGB α¬ Hex (optional)',
'color_ph' => 'ααα, α§. #ffffff α¬ rgb (255, 255, 255)',
'create_new_item' => 'αααααΎαααΆαα»αααΊαα»αααααΈα',
'delete_item_confirm' => 'ααΆα/α
αΆα αα»αααΆαα»αααΊαα»ααααα',
'delete_item_question' => 'ααΎα’αααααααΆααααΆα
αααα»αααΆαα»αααΊα... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/km/date.php | publishable/lang/km/date.php | <?php
return [
'last_week' => 'αααααΆα ααα»α',
'last_year' => 'ααααΆααα»α',
'this_week' => 'αααααΆα αααα',
'this_year' => 'ααααΆαααα',
];
| php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/km/settings.php | publishable/lang/km/settings.php | <?php
return [
'usage_help' => 'α’αααα’αΆα
ααααΎααααΆαααααααα·ααΈαααααΎααααΈαααα αΆααα·αααααααα
ααΎααααααααααα',
'save' => 'αααααΆαα»αααΆαααααα',
'new' => 'ααααααααΆαααααα',
'help_name' => 'αααααααΆαααααα α§α Admin Title',
'help_key' => 'ααΆααααααααΊαααΆααα... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/km/form.php | publishable/lang/km/form.php | <?php
return [
'field_password_keep' => 'αα»ααααααΎααααΈαααααΆα’ααααΌα
ααααΆ',
'field_select_dd_relationship' => 'ααααΌαααααΆααααΆαααα
αααααΆαααααααααααααα
αααα»α :method method αα :class classα',
'type_checkbox' => 'Check Box',
'type_codeeditor' => 'Code Editor',
'type_file' ... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/km/json.php | publishable/lang/km/json.php | <?php
return [
'invalid' => 'αααααααα JSON αα·αααααΉαααααΌα',
'invalid_message' => 'α αΆααααΌα
ααΆαααααααα JSON αα·αααααΉαααααΌα',
'valid' => 'αααααααα JSON ααααΉαααααΌα',
'validation_errors' => 'ααΆααααα αΆαααα»αααΆααααααααααΆαα',
];
| php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/km/error.php | publishable/lang/km/error.php | <?php
return [
'symlink_created_text' => 'ααα―αααΆααααα»αααααΌαααΆααααααΎα',
'symlink_created_title' => 'αα·αααΆααααααΎαααα―αααΆααααα»αααααΌα',
'symlink_failed_text' => 'ααΎααααΆααααααα»αααΆααααααΎαααααααααΆαααααααΆαααααααα·ααΈααααα’αααα ααΆα αΆααααΌα
ααΆα’ααααααααααααΆαααα ααααααα’ααααα·αααΆααααααΆααα',
'symlink_failed_title' =>... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/de/analytics.php | publishable/lang/de/analytics.php | <?php
return [
'by_pageview' => 'nach Pageviews',
'by_sessions' => 'nach Sessions',
'by_users' => 'nach Benutzern',
'no_client_id' => 'Um Analytics zu sehen mΓΌssen Sie Ihre Google Analytics Client ID zu Ihren Einstellungen unter dem SchlΓΌssel <code>google_a... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/de/generic.php | publishable/lang/de/generic.php | <?php
return [
'is_rtl' => 'false',
'action' => 'Aktion',
'actions' => 'Aktionen',
'add' => 'HinzufΓΌgen',
'add_folder' => 'Ordner hinzufΓΌgen',
'add_new' => 'Neu hinzufΓΌgen',
'all_done' ... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/de/theme.php | publishable/lang/de/theme.php | <?php
return [
'footer_copyright' => 'Gemacht mit <i class="voyager-heart"></i> von',
'footer_copyright2' => 'Gemacht mit Rum und noch mehr Rum',
];
| php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/de/dimmer.php | publishable/lang/de/dimmer.php | <?php
return [
'page' => 'Seite|Seiten',
'page_link_text' => 'Alle Seiten anzeigen',
'page_text' => 'Sie haben :count :string in Ihrer Datenbank.',
'post' => 'Post|Posts',
'post_link_text' => 'Alle Posts anzeigen',
'post_text' => 'Sie haben :count :string in Ihrer ... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/de/seeders.php | publishable/lang/de/seeders.php | <?php
return [
'data_rows' => [
'author' => 'Autor',
'avatar' => 'Avatar',
'body' => 'Inhalt',
'category' => 'Kategorie',
'created_at' => 'Erstellt am',
'display_name' => 'Anzeigename',
'email' => ... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/de/datatable.php | publishable/lang/de/datatable.php | <?php
// DataTable translations from: https://github.com/DataTables/Plugins/tree/master/i18n
return [
'sEmptyTable' => 'Keine Daten in der Tabelle vorhanden',
'sInfo' => 'Zeige _START_ bis _END_ von _TOTAL_ EintrΓ€gen',
'sInfoEmpty' => 'Zeige 0 von 0 EintrΓ€gen',
'sInfoFiltered' => '... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/de/media.php | publishable/lang/de/media.php | <?php
return [
'add_new_folder' => 'Neuen Ordner hinzufΓΌgen',
'audio_support' => 'Ihr Browser unterstΓΌtzt das Audio Element nicht.',
'create_new_folder' => 'Neuen Ordner erstellen',
'delete_folder_question' => 'Das LΓΆschen eines Ordners wird alle darin enthaltenen Dateien und Ordn... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
thedevdojo/voyager | https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/de/post.php | publishable/lang/de/post.php | <?php
return [
'additional_fields'=> 'ZusΓ€tzliche Felder',
'category' => 'Post Kategorie',
'content' => 'Post Inhalt',
'details' => 'Post Details',
'excerpt' => 'Ausschnitt <small>Kurzbeschreibung dieses Posts</small>',
'image' => 'Post Bild',
'... | php | MIT | 7e7e0f4f0e115d2d9e0481a86153a1ceff194c00 | 2026-01-04T15:03:42.463743Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.