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/publishable/lang/es/form.php
publishable/lang/es/form.php
<?php return [ 'field_password_keep' => 'Dejar vacío para mantener el mismo', 'field_select_dd_relationship' => 'Asegúrese de configurar la relación apropiada en el método :method de la clase :class.', 'type_checkbox' => 'Casilla de verificación', 'type_codeeditor' ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/es/json.php
publishable/lang/es/json.php
<?php return [ 'invalid' => 'JSON inválido', 'invalid_message' => 'Parece que has introducido un JSON inválido.', 'valid' => 'JSON Válido', 'validation_errors' => 'Errores de validación', ];
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/lang/es/error.php
publishable/lang/es/error.php
<?php return [ 'symlink_created_text' => 'Acabamos de crear por usted el enlace simbólico que faltaba.', 'symlink_created_title' => 'Enlace simbólico de almacenamiento faltante creado', 'symlink_failed_text' => 'No hemos podido generar el enlace simbólico faltante para su aplicación. Parece que su pr...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/config/voyager.php
publishable/config/voyager.php
<?php return [ /* |-------------------------------------------------------------------------- | User config |-------------------------------------------------------------------------- | | Here you can specify voyager user configs | */ 'user' => [ 'add_default_role_on_regist...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/config/voyager_dummy.php
publishable/config/voyager_dummy.php
<?php return [ /* |-------------------------------------------------------------------------- | User config |-------------------------------------------------------------------------- | | Here you can specify voyager user configs | */ 'user' => [ 'add_default_role_on_regist...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/database/dummy_seeders/CategoriesTableSeeder.php
publishable/database/dummy_seeders/CategoriesTableSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; use TCG\Voyager\Models\Category; use TCG\Voyager\Models\DataRow; use TCG\Voyager\Models\DataType; use TCG\Voyager\Models\Menu; use TCG\Voyager\Models\MenuItem; use TCG\Voyager\Models\Permission; class CategoriesTableSeeder extends Seeder { /** ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/database/dummy_seeders/UsersTableSeeder.php
publishable/database/dummy_seeders/UsersTableSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; use Illuminate\Support\Str; use TCG\Voyager\Models\Role; use TCG\Voyager\Models\User; class UsersTableSeeder extends Seeder { /** * Auto generated seed file. * * @return void */ public function run() { if (User:...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/database/dummy_seeders/PostsTableSeeder.php
publishable/database/dummy_seeders/PostsTableSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; use TCG\Voyager\Models\DataRow; use TCG\Voyager\Models\DataType; use TCG\Voyager\Models\Menu; use TCG\Voyager\Models\MenuItem; use TCG\Voyager\Models\Permission; use TCG\Voyager\Models\Post; class PostsTableSeeder extends Seeder { /** * Auto ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/database/dummy_seeders/PagesTableSeeder.php
publishable/database/dummy_seeders/PagesTableSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; use TCG\Voyager\Models\DataRow; use TCG\Voyager\Models\DataType; use TCG\Voyager\Models\Menu; use TCG\Voyager\Models\MenuItem; use TCG\Voyager\Models\Page; use TCG\Voyager\Models\Permission; class PagesTableSeeder extends Seeder { /** * Auto ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/database/migrations/2016_02_15_204651_create_categories_table.php
publishable/database/migrations/2016_02_15_204651_create_categories_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; class CreateCategoriesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { // Create table for storing categories Schema::create('cate...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/database/migrations/2016_01_01_000000_create_posts_table.php
publishable/database/migrations/2016_01_01_000000_create_posts_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; class CreatePostsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { // Create table for storing roles Schema::create('posts', functi...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/database/migrations/2017_04_11_000000_alter_post_nullable_fields_table.php
publishable/database/migrations/2017_04_11_000000_alter_post_nullable_fields_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AlterPostNullableFieldsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { $platform = \DB::getD...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/database/migrations/2016_01_01_000000_create_pages_table.php
publishable/database/migrations/2016_01_01_000000_create_pages_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use TCG\Voyager\Models\Page; class CreatePagesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { // Create table for storing roles S...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/database/seeders/SettingsTableSeeder.php
publishable/database/seeders/SettingsTableSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; use TCG\Voyager\Models\Setting; class SettingsTableSeeder extends Seeder { /** * Auto generated seed file. */ public function run() { $setting = $this->findSetting('site.title'); if (!$setting->exists) { ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/database/seeders/DataTypesTableSeeder.php
publishable/database/seeders/DataTypesTableSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; use TCG\Voyager\Models\DataType; class DataTypesTableSeeder extends Seeder { /** * Auto generated seed file. */ public function run() { $dataType = $this->dataType('slug', 'users'); if (!$dataType->exists) { ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/database/seeders/RolesTableSeeder.php
publishable/database/seeders/RolesTableSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; use TCG\Voyager\Models\Role; class RolesTableSeeder extends Seeder { /** * Auto generated seed file. */ public function run() { $role = Role::firstOrNew(['name' => 'admin']); if (!$role->exists) { $rol...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/database/seeders/VoyagerDatabaseSeeder.php
publishable/database/seeders/VoyagerDatabaseSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; class VoyagerDatabaseSeeder extends Seeder { /** * Run the database seeders. * * @return void */ public function run() { $this->call([ DataTypesTableSeeder::class, DataRowsTableSeeder::cl...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/database/seeders/DataRowsTableSeeder.php
publishable/database/seeders/DataRowsTableSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; use TCG\Voyager\Models\DataRow; use TCG\Voyager\Models\DataType; class DataRowsTableSeeder extends Seeder { /** * Auto generated seed file. */ public function run() { $userDataType = DataType::where('slug', 'users')->firs...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/database/seeders/TranslationsTableSeeder.php
publishable/database/seeders/TranslationsTableSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; use TCG\Voyager\Models\Category; use TCG\Voyager\Models\DataType; use TCG\Voyager\Models\MenuItem; use TCG\Voyager\Models\Page; use TCG\Voyager\Models\Translation; class TranslationsTableSeeder extends Seeder { /** * Auto generated seed file....
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/database/seeders/PermissionsTableSeeder.php
publishable/database/seeders/PermissionsTableSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; use TCG\Voyager\Models\Permission; class PermissionsTableSeeder extends Seeder { /** * Auto generated seed file. */ public function run() { $keys = [ 'browse_admin', 'browse_bread', 'br...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/database/seeders/VoyagerDummyDatabaseSeeder.php
publishable/database/seeders/VoyagerDummyDatabaseSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; class VoyagerDummyDatabaseSeeder extends Seeder { /** * Run the database seeders. * * @return void */ public function run() { $this->call([ CategoriesTableSeeder::class, UsersTableSeeder:...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/database/seeders/PermissionRoleTableSeeder.php
publishable/database/seeders/PermissionRoleTableSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; use TCG\Voyager\Models\Permission; use TCG\Voyager\Models\Role; class PermissionRoleTableSeeder extends Seeder { /** * Auto generated seed file. * * @return void */ public function run() { $role = Role::where('n...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/database/seeders/MenusTableSeeder.php
publishable/database/seeders/MenusTableSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; use TCG\Voyager\Models\Menu; class MenusTableSeeder extends Seeder { /** * Auto generated seed file. * * @return void */ public function run() { Menu::firstOrCreate([ 'name' => 'admin', ]); ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/database/seeders/MenuItemsTableSeeder.php
publishable/database/seeders/MenuItemsTableSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; use TCG\Voyager\Models\Menu; use TCG\Voyager\Models\MenuItem; class MenuItemsTableSeeder extends Seeder { /** * Auto generated seed file. * * @return void */ public function run() { $menu = Menu::where('name', '...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2018_03_11_000000_add_user_settings.php
migrations/2018_03_11_000000_add_user_settings.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddUserSettings extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('users', function (B...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2017_03_06_000000_add_controller_to_data_types_table.php
migrations/2017_03_06_000000_add_controller_to_data_types_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddControllerToDataTypesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('data_...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2016_10_21_190000_create_settings_table.php
migrations/2016_10_21_190000_create_settings_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateSettingsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('settings', fun...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2016_05_19_173453_create_menu_table.php
migrations/2016_05_19_173453_create_menu_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; class CreateMenuTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('menus', function (Blueprint $table) { $table-...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2016_01_01_000000_add_voyager_user_fields.php
migrations/2016_01_01_000000_add_voyager_user_fields.php
<?php use Illuminate\Database\Migrations\Migration; class AddVoyagerUserFields extends Migration { /** * Run the migrations. */ public function up() { Schema::table('users', function ($table) { if (!Schema::hasColumn('users', 'avatar')) { $table->string('avata...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2017_01_13_000000_add_route_to_menu_items_table.php
migrations/2017_01_13_000000_add_route_to_menu_items_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddRouteToMenuItemsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('menu_items...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2017_08_05_000000_add_group_to_settings_table.php
migrations/2017_08_05_000000_add_group_to_settings_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddGroupToSettingsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('settings', ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2016_01_01_000000_create_data_types_table.php
migrations/2016_01_01_000000_create_data_types_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; class CreateDataTypesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { // Create table for storing roles Schema::create('data_types...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2017_11_26_013050_add_user_role_relationship.php
migrations/2017_11_26_013050_add_user_role_relationship.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddUserRoleRelationship extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('users', fun...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2016_10_21_190000_create_roles_table.php
migrations/2016_10_21_190000_create_roles_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateRolesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('roles', function ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2016_11_30_135954_create_permission_table.php
migrations/2016_11_30_135954_create_permission_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreatePermissionTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('permissions'...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2016_11_30_141208_create_permission_role_table.php
migrations/2016_11_30_141208_create_permission_role_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreatePermissionRoleTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('permissi...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2017_01_14_005015_create_translations_table.php
migrations/2017_01_14_005015_create_translations_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateTranslationsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('translatio...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2017_07_05_210000_add_policyname_to_data_types_table.php
migrations/2017_07_05_210000_add_policyname_to_data_types_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; class AddPolicyNameToDataTypesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('data_types', function (Blueprint $table) { ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2017_04_21_000000_add_order_to_data_rows_table.php
migrations/2017_04_21_000000_add_order_to_data_rows_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddOrderToDataRowsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('data_rows',...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2017_11_26_015000_create_user_roles_table.php
migrations/2017_11_26_015000_create_user_roles_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateUserRolesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('user_roles', ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2018_03_16_000000_make_settings_value_nullable.php
migrations/2018_03_16_000000_make_settings_value_nullable.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\DB; use Illuminate\Support\Facades\Schema; class MakeSettingsValueNullable extends Migration { /** * Run the migrations. * * @return void */ public function up() ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2016_12_26_201236_data_types__add__server_side.php
migrations/2016_12_26_201236_data_types__add__server_side.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class DataTypesAddServerSide extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('data_types',...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2018_03_14_000000_add_details_to_data_types_table.php
migrations/2018_03_14_000000_add_details_to_data_types_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddDetailsToDatatypesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('data_typ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/migrations/2017_01_15_000000_make_table_name_nullable_in_permissions_table.php
migrations/2017_01_15_000000_make_table_name_nullable_in_permissions_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class MakeTableNameNullableInPermissionsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::ta...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/alerts.blade.php
resources/views/alerts.blade.php
<div class="alerts"> @foreach ($alerts as $alert) <div class="alert alert-{{ $alert->type }} alert-name-{{ $alert->name }}"> @foreach($alert->components as $component) <?php echo $component->render(); ?> @endforeach </div> @endforeach </div>
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/login.blade.php
resources/views/login.blade.php
@extends('voyager::auth.master') @section('content') <div class="login-container"> <p>{{ __('voyager::login.signin_below') }}</p> <form action="{{ route('voyager.login') }}" method="POST"> {{ csrf_field() }} <div class="form-group form-group-default" id="emailGroup"> ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/profile.blade.php
resources/views/profile.blade.php
@extends('voyager::master') @section('css') <style> .user-email { font-size: .85rem; margin-bottom: 1.5em; } </style> @stop @section('content') <div style="background-size:cover; background-image: url({{ Voyager::image( Voyager::setting('admin.bg_image'), voyager_as...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/index.blade.php
resources/views/index.blade.php
@extends('voyager::master') @section('content') <div class="page-content"> @include('voyager::alerts') @include('voyager::dimmers') <div class="analytics-container"> <?php $google_analytics_client_id = Voyager::setting("admin.google_analytics_client_id"); ?> @if (iss...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/dimmers.blade.php
resources/views/dimmers.blade.php
@php $dimmerGroups = Voyager::dimmers(); @endphp @forelse($dimmerGroups as $dimmerGroup) @php $count = $dimmerGroup->count(); $classes = [ 'col-xs-12', 'col-sm-'.($count >= 2 ? '6' : '12'), 'col-md-'.($count >= 3 ? '4' : ($count >= 2 ? '6' : '12')), ]; $class = implode(' ', ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/dimmer.blade.php
resources/views/dimmer.blade.php
<div class="panel widget center bgimage" style="margin-bottom:0;overflow:hidden;background-image:url('{{ $image }}');"> <div class="dimmer"></div> <div class="panel-content"> @if (isset($icon))<i class='{{ $icon }}'></i>@endif <h4>{!! $title !!}</h4> <p>{!! $text !!}</p> <a href=...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/master.blade.php
resources/views/master.blade.php
<!DOCTYPE html> <html lang="{{ config('app.locale') }}" dir="{{ __('voyager::generic.is_rtl') == 'true' ? 'rtl' : 'ltr' }}"> <head> <title>@yield('page_title', setting('admin.title') . " - " . setting('admin.description'))</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta na...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/auth/master.blade.php
resources/views/auth/master.blade.php
<!DOCTYPE html> <html lang="{{ config('app.locale') }}" dir="{{ __('voyager::generic.is_rtl') == 'true' ? 'rtl' : 'ltr' }}"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="robots" content="none" /> <meta name="viewport" content="width=device-width, initia...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/multilingual/input-hidden.blade.php
resources/views/multilingual/input-hidden.blade.php
@if ($isModelTranslatable) <input type="hidden" data-i18n="true" name="{{ $_field_name }}_i18n" id="{{ $_field_name }}_i18n" value="{{ $_field_trans }}"> @endif
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/multilingual/language-selector.blade.php
resources/views/multilingual/language-selector.blade.php
@if (isset($isModelTranslatable) && $isModelTranslatable) <div class="language-selector"> <div class="btn-group btn-group-sm" role="group" data-toggle="buttons"> @foreach(config('voyager.multilingual.locales') as $lang) <label class="btn btn-primary{{ ($lang === config('voyager.m...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/multilingual/input-hidden-bread-edit-add.blade.php
resources/views/multilingual/input-hidden-bread-edit-add.blade.php
@if (is_field_translatable($dataTypeContent, $row)) <span class="language-label js-language-label"></span> <input type="hidden" data-i18n="true" name="{{ $row->field }}_i18n" id="{{ $row->field }}_i18n" @if(!empty(session()->getOldInput($row->field.'_i18n') && is_null...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/multilingual/input-hidden-bread-read.blade.php
resources/views/multilingual/input-hidden-bread-read.blade.php
@if (is_field_translatable($dataTypeContent, $row)) <input type="hidden" data-i18n="true" name="{{ $row->field }}_i18n" id="{{ $row->field }}_i18n" value="{{ get_field_translations($dataTypeContent, $row->field, $row->type, true) }}"> @endif
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/multilingual/input-hidden-bread-browse.blade.php
resources/views/multilingual/input-hidden-bread-browse.blade.php
@if (is_field_translatable($data, $row)) <input type="hidden" data-i18n="true" name="{{ $row->field.$row->id }}_i18n" id="{{ $row->field.$row->id }}_i18n" value="{{ get_field_translations($data, $row->field) }}"> @endif
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/tools/bread/edit-add.blade.php
resources/views/tools/bread/edit-add.blade.php
@extends('voyager::master') @if (isset($dataType->id)) @section('page_title', __('voyager::bread.edit_bread_for_table', ['table' => $dataType->name])) @php $display_name = $dataType->getTranslatedAttribute('display_name_singular'); $display_name_plural = $dataType->getTranslatedAttribute('displ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
true
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/tools/bread/relationship-partial.blade.php
resources/views/tools/bread/relationship-partial.blade.php
@php $relationshipDetails = $relationship['details']; $relationshipKeyArray = array_fill_keys(["model", "table", "type", "column", "key", "label", "pivot_table", "pivot", "taggable"], ''); $adv_details = array_diff_key(json_decode(json_encode($relationshipDetails), true), $relationshipKeyArray); @endphp <d...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/tools/bread/relationship-new-modal.blade.php
resources/views/tools/bread/relationship-new-modal.blade.php
<!-- !!! Add form action below --> <form role="form" action="{{ route('voyager.bread.relationship') }}" method="POST"> <div class="modal fade modal-danger modal-relationships" id="new_relationship_modal"> <div class="modal-dialog relationship-panel"> <div class="model-content"> <div class="modal-head...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/tools/bread/index.blade.php
resources/views/tools/bread/index.blade.php
@extends('voyager::master') @section('page_title', __('voyager::generic.viewing').' '.__('voyager::generic.bread')) @section('page_header') <h1 class="page-title"> <i class="voyager-bread"></i> {{ __('voyager::generic.bread') }} </h1> @stop @section('content') <div class="page-content container-...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/tools/database/edit-add.blade.php
resources/views/tools/database/edit-add.blade.php
@extends('voyager::master') @if($db->action == 'update') @section('page_title', __('voyager::database.editing_table', ['table' => $db->table->name])) @else @section('page_title', __('voyager::database.create_new_table')) @endif @section('page_header') <h1 class="page-title"> <i class="voyager-data"...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/tools/database/index.blade.php
resources/views/tools/database/index.blade.php
@extends('voyager::master') @section('page_title', __('voyager::generic.viewing').' '.__('voyager::generic.database')) @section('page_header') <h1 class="page-title"> <i class="voyager-data"></i> {{ __('voyager::generic.database') }} <a href="{{ route('voyager.database.create') }}" class="btn btn-...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/tools/database/vue-components/database-table-helper-buttons.blade.php
resources/views/tools/database/vue-components/database-table-helper-buttons.blade.php
@section('database-table-helper-buttons-template') <div> <div class="btn btn-success" @click="addNewColumn">+ {{ __('voyager::database.add_new_column') }}</div> <div class="btn btn-success" @click="addTimestamps">+ {{ __('voyager::database.add_timestamps') }}</div> <div class="btn btn-succes...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/tools/database/vue-components/database-types.blade.php
resources/views/tools/database/vue-components/database-types.blade.php
@section('database-types-template') <div> <select :value="column.type.name" @change="onTypeChange" class="form-control"> <optgroup v-for="(types, category) in dbTypes" :label="category"> <option v-for="type in types" :value="type.name" :disabled="type.notSupported"> @{{ type.nam...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/tools/database/vue-components/database-column.blade.php
resources/views/tools/database/vue-components/database-column.blade.php
@section('database-column-template') <tr class="newTableRow"> <td> <input :value="column.name" @input="onColumnNameInput" type="text" class="form-control" required pattern="{{ $db->identifierRegex }}"> </td> <td> <database-types :column="column" @typeChanged="onColu...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/tools/database/vue-components/database-table-editor.blade.php
resources/views/tools/database/vue-components/database-table-editor.blade.php
@section('database-table-editor-template') <div class="panel panel-bordered"> <div class="panel-body"> <div class="row"> @if($db->action == 'update') <div class="col-md-12"> @else <div class="col-md-6"> @endif <label for="name">{{ __('voyager:...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/tools/database/vue-components/database-column-default.blade.php
resources/views/tools/database/vue-components/database-column-default.blade.php
@section('database-column-default-template') <input :value="column.default" :type="options.type" :step="options.step" :min="options.min" :max="options.max" :class="options.class" :disabled="options.disabled" @input="onDefaultInput" class="form-control"> @endsection <script> le...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/select_multiple.blade.php
resources/views/formfields/select_multiple.blade.php
{{-- If this is a relationship and the method does not exist, show a warning message --}} @if(isset($options->relationship) && !method_exists( $dataType->model_name, \Illuminate\Support\Str::camel($row->field) ) ) <p class="label label-warning"><i class="voyager-warning"></i> {{ __('voyager::form.field_select_dd_re...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/markdown_editor.blade.php
resources/views/formfields/markdown_editor.blade.php
<textarea class="form-control easymde" name="{{ $row->field }}" id="markdown{{ $row->field }}">{{ old($row->field, $dataTypeContent->{$row->field} ?? '') }}</textarea>
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/multiple_images.blade.php
resources/views/formfields/multiple_images.blade.php
<br> @if(isset($dataTypeContent->{$row->field})) <?php $images = json_decode($dataTypeContent->{$row->field}); ?> @if($images != null) @foreach($images as $image) <div class="img_settings_container" data-field-name="{{ $row->field }}" style="float:left;padding-right:15px;"> <...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/file.blade.php
resources/views/formfields/file.blade.php
@if(isset($dataTypeContent->{$row->field})) @if(json_decode($dataTypeContent->{$row->field}) !== null) @foreach(json_decode($dataTypeContent->{$row->field}) as $file) <div data-field-name="{{ $row->field }}"> <a class="fileType" target="_blank" href="{{ Storage::disk(conf...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/select_dropdown.blade.php
resources/views/formfields/select_dropdown.blade.php
@if(isset($options->relationship)) {{-- If this is a relationship and the method does not exist, show a warning message --}} @if( !method_exists( $dataType->model_name, \Illuminate\Support\Str::camel($row->field) ) ) <p class="label label-warning"><i class="voyager-warning"></i> {{ __('voyager::form.fi...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/text_area.blade.php
resources/views/formfields/text_area.blade.php
<textarea @if($row->required == 1) required @endif class="form-control" name="{{ $row->field }}" rows="{{ $options->display->rows ?? 5 }}">{{ old($row->field, $dataTypeContent->{$row->field} ?? $options->default ?? '') }}</textarea>
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/checkbox.blade.php
resources/views/formfields/checkbox.blade.php
<br> <?php $checked = false; ?> @if(isset($dataTypeContent->{$row->field}) || old($row->field)) <?php $checked = old($row->field, $dataTypeContent->{$row->field}); ?> @else <?php $checked = isset($options->checked) && filter_var($options->checked, FILTER_VALIDATE_BOOLEAN) ? true: false; ?> @endif <?php...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/text.blade.php
resources/views/formfields/text.blade.php
<input @if($row->required == 1) required @endif type="text" class="form-control" name="{{ $row->field }}" placeholder="{{ old($row->field, $options->placeholder ?? $row->getTranslatedAttribute('display_name')) }}" {!! isBreadSlugAutoGenerator($options) !!} value="{{ old($row->field, $dataTypeConte...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/date.blade.php
resources/views/formfields/date.blade.php
<input type="date" class="form-control" name="{{ $row->field }}" placeholder="{{ $row->getTranslatedAttribute('display_name') }}" value="@if(isset($dataTypeContent->{$row->field})){{ \Carbon\Carbon::parse(old($row->field, $dataTypeContent->{$row->field}))->format('Y-m-d') }}@else{{old($row->field)}}@endif...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/rich_text_box.blade.php
resources/views/formfields/rich_text_box.blade.php
<textarea class="form-control richTextBox" name="{{ $row->field }}" id="richtext{{ $row->field }}"> {{ old($row->field, $dataTypeContent->{$row->field} ?? '') }} </textarea> @push('javascript') <script> $(document).ready(function() { var additionalConfig = { selector: 'texta...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/color.blade.php
resources/views/formfields/color.blade.php
<input type="color" class="form-control" name="{{ $row->field }}" value="{{ old($row->field, $dataTypeContent->{$row->field}) }}">
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/coordinates.blade.php
resources/views/formfields/coordinates.blade.php
<style> #map { height: 400px; width: 100%; } </style> @php $showAutocomplete = property_exists($row->details, 'showAutocompleteInput') ? (bool)$row->details->showAutocompleteInput : true; $showAutocomplete = $showAutocomplete ? 'true' : 'false'; $showLatLng = property_exists($row->d...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/number.blade.php
resources/views/formfields/number.blade.php
<input type="number" class="form-control" name="{{ $row->field }}" type="number" @if($row->required == 1) required @endif @if(isset($options->min)) min="{{ $options->min }}" @endif @if(isset($options->max)) max="{{ $options->max }}" @endif step="{{ $options->step ?? 'any...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/timestamp.blade.php
resources/views/formfields/timestamp.blade.php
<input @if($row->required == 1) required @endif type="datetime" class="form-control datepicker" name="{{ $row->field }}" value="@if(isset($dataTypeContent->{$row->field})){{ \Carbon\Carbon::parse(old($row->field, $dataTypeContent->{$row->field}))->format('m/d/Y g:i A') }}@else{{old($row->field)}}@endif">
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/hidden.blade.php
resources/views/formfields/hidden.blade.php
<input type="hidden" class="form-control" name="{{ $row->field }}" placeholder="{{ $row->getTranslatedAttribute('display_name') }}" {!! isBreadSlugAutoGenerator($options) !!} value="{{ old($row->field, $dataTypeContent->{$row->field} ?? $options->default ?? '') }}">
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/radio_btn.blade.php
resources/views/formfields/radio_btn.blade.php
<?php $selected_value = old($row->field, $dataTypeContent->{$row->field} ?? $options->default ?? NULL) ?> <ul class="radio"> @if(isset($options->options)) @foreach($options->options as $key => $option) <li> <input type="radio" id="option-{{ \Illuminate\Support\Str::slug($row->fie...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/code_editor.blade.php
resources/views/formfields/code_editor.blade.php
<div id="{{ $row->field }}" data-theme="{{ @$options->theme }}" data-language="{{ @$options->language }}" class="ace_editor min_height_200" name="{{ $row->field }}">{{ old($row->field, $dataTypeContent->{$row->field} ?? $options->default ?? '') }}</div> <textarea name="{{ $row->field }}" id="{{ $row->field }}_textarea"...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/time.blade.php
resources/views/formfields/time.blade.php
<input @if($row->required == 1) required @endif type="time" data-name="{{ $row->getTranslatedAttribute('display_name') }}" class="form-control" name="{{ $row->field }}" placeholder="{{ old($row->field, $options->placeholder ?? $row->getTranslatedAttribute('display_name')) }}" {!! isBreadSlugAutoGenerato...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/media_picker.blade.php
resources/views/formfields/media_picker.blade.php
<div class="panel"> <div class="page-content settings container-fluid"> <div id="media_picker_{{ $row->field }}"> <media-manager base-path="{{ $options->base_path ?? '/'.$dataType->slug.'/' }}" filename="{{ $options->rename ?? 'null' }}" :allow-mul...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/image.blade.php
resources/views/formfields/image.blade.php
@if(isset($dataTypeContent->{$row->field})) <div data-field-name="{{ $row->field }}"> <a href="#" class="voyager-x remove-single-image" style="position:absolute;"></a> <img src="@if( !filter_var($dataTypeContent->{$row->field}, FILTER_VALIDATE_URL)){{ Voyager::image( $dataTypeContent->{$row->field} ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/password.blade.php
resources/views/formfields/password.blade.php
@if(isset($dataTypeContent->{$row->field})) <br> <small>{{ __('voyager::form.field_password_keep') }}</small> @endif <input type="password" @if($row->required == 1 && !isset($dataTypeContent->{$row->field})) required @endif class="form-control" name="{{ $row->field }}" value="">
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/relationship.blade.php
resources/views/formfields/relationship.blade.php
@if(isset($options->model) && isset($options->type)) @if(class_exists($options->model)) @php $relationshipField = $row->field; @endphp @if($options->type == 'belongsTo') @if(isset($view) && ($view == 'browse' || $view == 'read')) @php $relationshi...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/formfields/multiple_checkbox.blade.php
resources/views/formfields/multiple_checkbox.blade.php
<br> <?php $checked = false; ?> @if(isset($options->options)) @foreach($options->options as $key => $label) @if(isset($dataTypeContent->{$row->field}) || old($row->field)) @php $checkedData = old($row->field, $dataTypeContent->{$row->field}); $checkedData = is_arr...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/settings/index.blade.php
resources/views/settings/index.blade.php
@extends('voyager::master') @section('page_title', __('voyager::generic.viewing').' '.__('voyager::generic.settings')) @section('css') <style> .panel-actions .voyager-trash { cursor: pointer; } .panel-actions .voyager-trash:hover { color: #e94542; } ...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/bread/read.blade.php
resources/views/bread/read.blade.php
@extends('voyager::master') @section('page_title', __('voyager::generic.view').' '.$dataType->getTranslatedAttribute('display_name_singular')) @section('page_header') <h1 class="page-title"> <i class="{{ $dataType->icon }}"></i> {{ __('voyager::generic.viewing') }} {{ ucfirst($dataType->getTranslatedAttri...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/bread/edit-add.blade.php
resources/views/bread/edit-add.blade.php
@php $edit = !is_null($dataTypeContent->getKey()); $add = is_null($dataTypeContent->getKey()); @endphp @extends('voyager::master') @section('css') <meta name="csrf-token" content="{{ csrf_token() }}"> @stop @section('page_title', __('voyager::generic.'.($edit ? 'edit' : 'add')).' '.$dataType->getTransla...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/bread/browse.blade.php
resources/views/bread/browse.blade.php
@extends('voyager::master') @section('page_title', __('voyager::generic.viewing').' '.$dataType->getTranslatedAttribute('display_name_plural')) @section('page_header') <div class="container-fluid"> <h1 class="page-title"> <i class="{{ $dataType->icon }}"></i> {{ $dataType->getTranslatedAttribu...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/bread/order.blade.php
resources/views/bread/order.blade.php
@extends('voyager::master') @section('page_title', $dataType->getTranslatedAttribute('display_name_plural') . ' ' . __('voyager::bread.order')) @section('page_header') <h1 class="page-title"> <i class="voyager-list"></i>{{ $dataType->getTranslatedAttribute('display_name_plural') }} {{ __('voyager::bread.order') }...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/bread/partials/actions.blade.php
resources/views/bread/partials/actions.blade.php
@if($data) @php // need to recreate object because policy might depend on record data $class = get_class($action); $action = new $class($dataType, $data); @endphp @can ($action->getPolicy(), $data) @if ($action->shouldActionDisplayOnRow($data)) <a href="{{ $action...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/posts/edit-add.blade.php
resources/views/posts/edit-add.blade.php
@php $edit = !is_null($dataTypeContent->getKey()); $add = is_null($dataTypeContent->getKey()); @endphp @extends('voyager::master') @section('css') <meta name="csrf-token" content="{{ csrf_token() }}"> <style> .panel .mce-panel { border-left-color: #fff; border-right-co...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/roles/edit-add.blade.php
resources/views/roles/edit-add.blade.php
@extends('voyager::master') @section('page_title', __('voyager::generic.'.(isset($dataTypeContent->id) ? 'edit' : 'add')).' '.$dataType->getTranslatedAttribute('display_name_singular')) @section('css') <meta name="csrf-token" content="{{ csrf_token() }}"> @stop @section('page_header') <h1 class="page-title">...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false
thedevdojo/voyager
https://github.com/thedevdojo/voyager/blob/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/views/partials/app-footer.blade.php
resources/views/partials/app-footer.blade.php
<footer class="app-footer"> <div class="site-footer-right"> @if (rand(1,100) == 100) <i class="voyager-rum-1"></i> {{ __('voyager::theme.footer_copyright2') }} @else {!! __('voyager::theme.footer_copyright') !!} <a href="http://thecontrolgroup.com" target="_blank">The Control...
php
MIT
7e7e0f4f0e115d2d9e0481a86153a1ceff194c00
2026-01-04T15:03:42.463743Z
false