file_path
stringlengths
3
280
file_language
stringclasses
66 values
content
stringlengths
1
1.04M
repo_name
stringlengths
5
92
repo_stars
int64
0
154k
repo_description
stringlengths
0
402
repo_primary_language
stringclasses
108 values
developer_username
stringlengths
1
25
developer_name
stringlengths
0
30
developer_company
stringlengths
0
82
config/logging.php
PHP
<?php use Monolog\Handler\NullHandler; use Monolog\Handler\StreamHandler; use Monolog\Handler\SyslogUdpHandler; use Monolog\Processor\PsrLogMessageProcessor; return [ /* |-------------------------------------------------------------------------- | Default Log Channel |--------------------------------...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
config/mail.php
PHP
<?php return [ /* |-------------------------------------------------------------------------- | Default Mailer |-------------------------------------------------------------------------- | | This option controls the default mailer that is used to send all email | messages unless another ma...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
config/queue.php
PHP
<?php return [ /* |-------------------------------------------------------------------------- | Default Queue Connection Name |-------------------------------------------------------------------------- | | Laravel's queue supports a variety of backends via a single, unified | API, giving y...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
config/services.php
PHP
<?php return [ /* |-------------------------------------------------------------------------- | Third Party Services |-------------------------------------------------------------------------- | | This file is for storing the credentials for third party services such | as Mailgun, Postmark...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
config/session.php
PHP
<?php use Illuminate\Support\Str; return [ /* |-------------------------------------------------------------------------- | Default Session Driver |-------------------------------------------------------------------------- | | This option determines the default session driver that is utilized...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
config/torchlight.php
PHP
<?php return [ // The Torchlight client caches highlighted code blocks. Here // you can define which cache driver you'd like to use. If // leave this blank your default app cache will be used. 'cache' => env('TORCHLIGHT_CACHE_DRIVER'), // Which theme you want to use. You can find all of the themes...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
database/factories/UserFactory.php
PHP
<?php namespace Database\Factories; use App\Models\Team; use App\Models\User; use Illuminate\Database\Eloquent\Factories\Factory; use Illuminate\Support\Facades\Hash; use Illuminate\Support\Str; use Laravel\Jetstream\Features; /** * @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\User> */ clas...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
database/migrations/0001_01_01_000000_create_users_table.php
PHP
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::create('users', function (Blueprint $table) { ...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
database/migrations/0001_01_01_000001_create_cache_table.php
PHP
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::create('cache', function (Blueprint $table) { ...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
database/migrations/0001_01_01_000002_create_jobs_table.php
PHP
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::create('jobs', function (Blueprint $table) { ...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
database/migrations/2025_02_02_042601_add_two_factor_columns_to_users_table.php
PHP
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::table('users', function (Blueprint $table) { ...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
database/migrations/2025_02_02_042625_create_personal_access_tokens_table.php
PHP
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::create('personal_access_tokens', function (Blueprint...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
database/seeders/DatabaseSeeder.php
PHP
<?php namespace Database\Seeders; // use Illuminate\Database\Console\Seeds\WithoutModelEvents; use Illuminate\Database\Seeder; class DatabaseSeeder extends Seeder { /** * Seed the application's database. * * @return void */ public function run() { // \App\Models\User::factory(...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
postcss.config.js
JavaScript
export default { plugins: { "@tailwindcss/postcss": {}, }, };
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
public/index.php
PHP
<?php use Illuminate\Http\Request; define('LARAVEL_START', microtime(true)); if (! defined('DEFAULT_VERSION')) { define('DEFAULT_VERSION', 'master'); } if (! defined('DEFAULT_PACKAGE')) { define('DEFAULT_PACKAGE', 'laravel-datatables'); } // Determine if the application is in maintenance mode... if (file_e...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/css/app.css
CSS
@import "tailwindcss"; @config "../../tailwind.config.js"; [x-cloak] { display: none; }
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/css/docs.css
CSS
@import "./docs/_typography.css"; @import "./docs/_sidebar_layout.css"; @import "./docs/_docs.css"; @import "./docs/_carbon_ads.css"; @import "./docs/_accessibility.css"; @import "./docs/_dark_mode.css"; @import "./docs/_code.css"; @import "tailwindcss"; @custom-variant dark (&:where(.dark, .dark *)); @config "../.....
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/css/docs/_accessibility.css
CSS
#skip-to-content-link:not(:focus) { position: absolute !important; clip: rect(0, 0, 0, 0) !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; } #skip-to-content-link { z-index: 2147483647; } #main-conte...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/css/docs/_carbon_ads.css
CSS
#carbonads { position: fixed; bottom: 20px; right: 20px; background-color: #F7F8FB; z-index: 100; box-shadow: 0 0 1px hsla(0, 0%, 0%, 0.25); padding: .625em; max-width: 130px; box-sizing: content-box; span { display: block; } img { display: block; ...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/css/docs/_code.css
CSS
:not(pre) > code { color: theme('colors.gray.900'); background: none; text-align: left; white-space: pre; word-spacing: normal; word-break: normal; word-wrap: normal; tab-size: 4; hyphens: none; } .docs_main :not(pre) > code { display: inline-flex; padding: 0 .125rem; border-radius: .125rem; m...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/css/docs/_dark_mode.css
CSS
.docs_main { /* Headers */ & h1, & h2, & h3, & h4, & h5, & h6, & h4 a, & h3 a, & h2 a { @apply dark:text-gray-200; } /* Body text */ & p, & ul:not(:first-of-type) li, & .content-list ul li, & #software-list, & #valet-support { @apply dark:text-gray-400; } /* Table of conten...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/css/docs/_docs.css
CSS
.callout p { margin-bottom: 0; } .docs_main { a[name] { position: relative; display: block; visibility: hidden; top: -45px; } table { border-collapse: collapse; width: 100%; font-size: 13px; margin-bottom: 2em; th, td { ...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/css/docs/_sidebar_layout.css
CSS
.docs_sidebar { h3 { font-size: 1.25em; font-weight: 500; line-height: 1.25em; letter-spacing: -.33px; margin-top: 1.5em; margin-bottom: 0.75em; } ul { list-style-type: none; margin: 0; padding: 0; li { display: bl...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/css/docs/_typography.css
CSS
.docs_main { h1, h2, h3, h4, h5, h6 { font-weight: 500; margin-bottom: 0.75em; } h2, h3 { margin-top: 2em; } h4 { margin-top: 1.5em; } h1 { font-size: 2em; letter-spacing: -1px; line-height: 1.125em; margin-bottom: .65em; ...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/js/app.js
JavaScript
import './bootstrap'; import Alpine from 'alpinejs'; window.Alpine = Alpine; Alpine.start();
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/js/bootstrap.js
JavaScript
import _ from 'lodash'; window._ = _; /** * We'll load the axios HTTP library which allows us to easily issue requests * to our Laravel back-end. This library automatically handles sending the * CSRF token as a header based on the value of the "XSRF" token cookie. */ import axios from 'axios'; window.axios = axio...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/js/docs.js
JavaScript
import './bootstrap'; import Alpine from 'alpinejs'; import Focus from '@alpinejs/focus'; import SearchComponent from './docs/components/search'; import './docs/clipboard'; import './docs/docs'; window.Alpine = Alpine; window.searchComponent = SearchComponent; Alpine.plugin(Focus); Alpine.start();
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/js/docs/clipboard.js
JavaScript
import ClipboardJS from 'clipboard/dist/clipboard'; // These icons must be inline to avoid rendering bugs. const clipboardIcon = `<svg class="fill-current h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"><path d="M8 3a1 1 0 011-1h2a1 1 0 110 2H9a1 1 0 01-1-1z"></path><path d="M6 3a2 ...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/js/docs/components/accessibility.js
JavaScript
const skipToContentLink = document.querySelector('#skip-to-content-link'); const mainContentWrapper = document.querySelector('#main-content'); if (skipToContentLink && mainContentWrapper) { skipToContentLink.addEventListener('click', setFocusOnContentWrapper); mainContentWrapper.addEventListener('blur', remove...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/js/docs/components/search.js
JavaScript
import algoliasearch from 'algoliasearch/lite'; export default function () { return { search: '', open: false, hits: [], searching: false, init() { const searchClient = algoliasearch(window.algolia_app_id, window.algolia_search_key); const index = se...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/js/docs/components/theme.js
JavaScript
export const toDarkMode = () => { localStorage.theme = 'dark'; window.updateTheme(); } export const toLightMode = () => { localStorage.theme = 'light'; window.updateTheme(); } export const toSystemMode = () => { localStorage.theme = 'system'; window.updateTheme(); }
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/js/docs/docs.js
JavaScript
import Prism from 'prismjs'; Prism.manual = true; // highlightCode(); wrapHeadingsInAnchors(); setupNavCurrentLinkHandling(); replaceBlockquotesWithCalloutsInDocs(); highlightSupportPolicyTable(); function highlightCode() { [...document.querySelectorAll('pre code')].forEach(el => { Prism.highlightElement(...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/accessibility/main-content-wrapper.blade.php
PHP
<div id="main-content" class="mb-10"> {{ $slot }} @isset($editRepoLink) {{ $editRepoLink }} @endif </div>
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/accessibility/skip-to-content-link.blade.php
PHP
<a id="skip-to-content-link" href="#main-content" class="absolute bg-gray-100 px-4 py-2 top-3 left-3 text-gray-700 shadow-xl" > Skip to content </a>
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/action-message.blade.php
PHP
@props(['on']) <div x-data="{ shown: false, timeout: null }" x-init="@this.on('{{ $on }}', () => { clearTimeout(timeout); shown = true; timeout = setTimeout(() => { shown = false }, 2000); })" x-show.transition.out.opacity.duration.1500ms="shown" x-transition:leave.opacity.duration.1500ms style="displa...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/action-section.blade.php
PHP
<div {{ $attributes->merge(['class' => 'md:grid md:grid-cols-3 md:gap-6']) }}> <x-section-title> <x-slot name="title">{{ $title }}</x-slot> <x-slot name="description">{{ $description }}</x-slot> </x-section-title> <div class="mt-5 md:mt-0 md:col-span-2"> <div class="px-4 py-5 sm:p-6...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/ads.blade.php
PHP
@props(['adSlot', 'publisher' => 'ca-pub-2399525660597307', 'type' => 'auto']) @production <ins class="adsbygoogle" style="display:block" data-ad-client="{{ $publisher }}" data-ad-slot="{{ $adSlot }}" data-ad-format="auto" data-full-width-responsive="true"></ins> <s...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/application-logo.blade.php
PHP
<svg viewBox="0 0 317 48" fill="none" xmlns="http://www.w3.org/2000/svg" {{ $attributes }}> <path d="M74.09 30.04V13h-4.14v21H82.1v-3.96h-8.01zM95.379 19v1.77c-1.08-1.35-2.7-2.19-4.89-2.19-3.99 0-7.29 3.45-7.29 7.92s3.3 7.92 7.29 7.92c2.19 0 3.81-.84 4.89-2.19V34h3.87V19h-3.87zm-4.17 11.73c-2.37 0-4.14-1.71-4.14-4.23...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/application-mark.blade.php
PHP
<svg viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" {{ $attributes }}> <path d="M11.395 44.428C4.557 40.198 0 32.632 0 24 0 10.745 10.745 0 24 0a23.891 23.891 0 0113.997 4.502c-.2 17.907-11.097 33.245-26.602 39.926z" fill="#6875F5"/> <path d="M14.134 45.885A23.914 23.914 0 0024 48c13.255 0 24-10...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/authentication-card-logo.blade.php
PHP
<a href="/"> <svg class="size-16" viewbox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M11.395 44.428C4.557 40.198 0 32.632 0 24 0 10.745 10.745 0 24 0a23.891 23.891 0 0113.997 4.502c-.2 17.907-11.097 33.245-26.602 39.926z" fill="#6875F5"/> <path d="M14.134 45.885A23.914 23.9...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/authentication-card.blade.php
PHP
<div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-gray-100"> <div> {{ $logo }} </div> <div class="w-full sm:max-w-md mt-6 px-6 py-4 bg-white shadow-md overflow-hidden sm:rounded-lg"> {{ $slot }} </div> </div>
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/banner.blade.php
PHP
@props(['style' => session('flash.bannerStyle', 'success'), 'message' => session('flash.banner')]) <div x-data="{{ json_encode(['show' => true, 'style' => $style, 'message' => $message]) }}" :class="{ 'bg-indigo-500': style == 'success', 'bg-red-700': style == 'danger', 'bg-yellow-500': style == 'warning', 'bg-gra...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/button.blade.php
PHP
<button {{ $attributes->merge(['type' => 'submit', 'class' => 'inline-flex items-center px-4 py-2 bg-gray-800 border border-transparent rounded-md font-semibold text-xs text-white uppercase tracking-widest hover:bg-gray-700 focus:bg-gray-700 active:bg-gray-900 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/button/primary.blade.php
PHP
<a {{ $attributes->merge(['class' => 'group relative inline-flex border border-red-500 focus:outline-none' ]) }}> <span class="w-full inline-flex items-center justify-center self-stretch px-4 py-2 text-sm text-white text-center font-bold uppercase bg-red-500 ring-1 ring-red-500 ring-offset-1 ring-offset-red-500 tra...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/button/secondary.blade.php
PHP
<a {{ $attributes->merge(['class' => 'group relative inline-flex border border-red-600 focus:outline-none']) }}> <span class="w-full inline-flex items-center justify-center self-stretch px-4 py-2 text-sm text-red-600 text-center font-bold uppercase bg-white ring-1 ring-red-600 ring-offset-1 transform transition-tra...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/checkbox.blade.php
PHP
<input type="checkbox" {!! $attributes->merge(['class' => 'rounded border-gray-300 text-indigo-600 shadow-sm focus:ring-indigo-500']) !!}>
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/confirmation-modal.blade.php
PHP
@props(['id' => null, 'maxWidth' => null]) <x-modal :id="$id" :maxWidth="$maxWidth" {{ $attributes }}> <div class="bg-white px-4 pt-5 pb-4 sm:p-6 sm:pb-4"> <div class="sm:flex sm:items-start"> <div class="mx-auto shrink-0 flex items-center justify-center size-12 rounded-full bg-red-100 sm:mx-0 ...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/confirms-password.blade.php
PHP
@props(['title' => __('Confirm Password'), 'content' => __('For your security, please confirm your password to continue.'), 'button' => __('Confirm')]) @php $confirmableId = md5($attributes->wire('then')); @endphp <span {{ $attributes->wire('then') }} x-data x-ref="span" x-on:click="$wire.startCon...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/cube.blade.php
PHP
@props(['delay' => 0]) <svg x-data="{ initializeAnimation: false, init() { setTimeout(() => { this.initializeAnimation = true; }, {{ $delay }}); }, }" :class="initializeAnimation ? 'animate-cube' : ''" {{ $attributes->merge(['class' => 'te...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/danger-button.blade.php
PHP
<button {{ $attributes->merge(['type' => 'button', 'class' => 'inline-flex items-center justify-center px-4 py-2 bg-red-600 border border-transparent rounded-md font-semibold text-xs text-white uppercase tracking-widest hover:bg-red-500 active:bg-red-700 focus:outline-none focus:ring-2 focus:ring-red-500 focus:ring-off...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/dialog-modal.blade.php
PHP
@props(['id' => null, 'maxWidth' => null]) <x-modal :id="$id" :maxWidth="$maxWidth" {{ $attributes }}> <div class="px-6 py-4"> <div class="text-lg font-medium text-gray-900"> {{ $title }} </div> <div class="mt-4 text-sm text-gray-600"> {{ $content }} </div> ...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/dropdown-link.blade.php
PHP
<a {{ $attributes->merge(['class' => 'block w-full px-4 py-2 text-start text-sm leading-5 text-gray-700 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 transition duration-150 ease-in-out']) }}>{{ $slot }}</a>
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/dropdown.blade.php
PHP
@props(['align' => 'right', 'width' => '48', 'contentClasses' => 'py-1 bg-white', 'dropdownClasses' => '']) @php $alignmentClasses = match ($align) { 'left' => 'ltr:origin-top-left rtl:origin-top-right start-0', 'top' => 'origin-top', 'none', 'false' => '', default => 'ltr:origin-top-right rtl:origin-t...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/form-section.blade.php
PHP
@props(['submit']) <div {{ $attributes->merge(['class' => 'md:grid md:grid-cols-3 md:gap-6']) }}> <x-section-title> <x-slot name="title">{{ $title }}</x-slot> <x-slot name="description">{{ $description }}</x-slot> </x-section-title> <div class="mt-5 md:mt-0 md:col-span-2"> <form wi...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/input-error.blade.php
PHP
@props(['for']) @error($for) <p {{ $attributes->merge(['class' => 'text-sm text-red-600']) }}>{{ $message }}</p> @enderror
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/input.blade.php
PHP
@props(['disabled' => false]) <input {{ $disabled ? 'disabled' : '' }} {!! $attributes->merge(['class' => 'border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 rounded-md shadow-sm']) !!}>
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/label.blade.php
PHP
@props(['value']) <label {{ $attributes->merge(['class' => 'block font-medium text-sm text-gray-700']) }}> {{ $value ?? $slot }} </label>
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/modal.blade.php
PHP
@props(['id', 'maxWidth']) @php $id = $id ?? md5($attributes->wire('model')); $maxWidth = [ 'sm' => 'sm:max-w-sm', 'md' => 'sm:max-w-md', 'lg' => 'sm:max-w-lg', 'xl' => 'sm:max-w-xl', '2xl' => 'sm:max-w-2xl', ][$maxWidth ?? '2xl']; @endphp <div x-data="{ show: @entangle($attributes->wire('mod...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/nav-link.blade.php
PHP
@props(['active']) @php $classes = ($active ?? false) ? 'inline-flex items-center px-1 pt-1 border-b-2 border-indigo-400 text-sm font-medium leading-5 text-gray-900 focus:outline-none focus:border-indigo-700 transition duration-150 ease-in-out' : 'inline-flex items-center px-1 pt-1 border-b-2 b...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/partners/body.blade.php
PHP
<div class="relative"> <div class="max-w-screen-xl mx-auto px-8 py-12 lg:py-24"> <div style="width: 130%;z-index: -9998" class="hidden md:transform md:-translate-x-1/2 md:absolute md:inset-y-0 md:left-0 md:w-full md:flex md:items-center xl:left-16 2xl:left-32"> <video poster="/img/blocks/blocks_...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/partners/hero.blade.php
PHP
<section class="py-12 md:py-20 lg:py-32"> <div class="max-w-screen-xl mx-auto px-8"> <h6 class="text-gray-600 font-medium text-sm">Laravel Partner</h6> <div class="mt-8 lg:flex lg:items-center lg:justify-between"> {{ $logo }} <div class="mt-8 flex items-center space-x-4 lg:mt...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/project.blade.php
PHP
<blockquote class="rounded-lg shadow-sm relative flex flex-col w-full bg-white p-5 border border-gray-200 break-inside-avoid-column"> <a href="{{ $project['doc_url'] }}" class="text-blue-800 hover:text-blue-500"> <h3 class="text-xl font-bold">{{ package_to_title($project['name']) }}</h3> </a> <p cl...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/radial-blur.blade.php
PHP
<span {{ $attributes->merge(['class' => 'hidden absolute bg-radial-gradient opacity-[.15] pointer-events-none lg:inline-flex']) }}></span>
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/responsive-nav-link.blade.php
PHP
@props(['active']) @php $classes = ($active ?? false) ? 'block w-full ps-3 pe-4 py-2 border-l-4 border-indigo-400 text-start text-base font-medium text-indigo-700 bg-indigo-50 focus:outline-none focus:text-indigo-800 focus:bg-indigo-100 focus:border-indigo-700 transition duration-150 ease-in-out' ...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/search-modal.blade.php
PHP
<div x-data="searchComponent()" @toggle-search-modal.window="open = !open" @keydown.window.escape="close" @keydown.window="handleKeydown" @keydown.escape.prevent.stop="close" x-init="$nextTick(() => { if (! window.URLSearchParams) { return } ...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/secondary-button.blade.php
PHP
<button {{ $attributes->merge(['type' => 'button', 'class' => 'inline-flex items-center px-4 py-2 bg-white border border-gray-300 rounded-md font-semibold text-xs text-gray-700 uppercase tracking-widest shadow-sm hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 disabled:opacity...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/section-border.blade.php
PHP
<div class="hidden sm:block"> <div class="py-8"> <div class="border-t border-gray-200"></div> </div> </div>
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/section-title.blade.php
PHP
<div class="md:col-span-1 flex justify-between"> <div class="px-4 sm:px-0"> <h3 class="text-lg font-medium text-gray-900">{{ $title }}</h3> <p class="mt-1 text-sm text-gray-600"> {{ $description }} </p> </div> <div class="px-4 sm:px-0"> {{ $aside ?? '' }} </...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/switchable-team.blade.php
PHP
@props(['team', 'component' => 'dropdown-link']) <form method="POST" action="{{ route('current-team.update') }}" x-data> @method('PUT') @csrf <!-- Hidden Team ID --> <input type="hidden" name="team_id" value="{{ $team->id }}"> <x-dynamic-component :component="$component" href="#" x-on:click.preve...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/testimonial.blade.php
PHP
<blockquote class="relative w-full bg-white p-5 border border-gray-200 break-inside-avoid-column"> <h2 class="text-sm">“{{ $content }}“</h2> <div class="mt-5 flex items-start gap-4"> <img src="/images/testimonials/{{ Str::slug($name) }}.jpg" class="w-10 h-10 object-cover object-center" alt="{{ $name }}"...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/validation-errors.blade.php
PHP
@if ($errors->any()) <div {{ $attributes }}> <div class="font-medium text-red-600">{{ __('Whoops! Something went wrong.') }}</div> <ul class="mt-3 list-disc list-inside text-sm text-red-600"> @foreach ($errors->all() as $error) <li>{{ $error }}</li> @endforea...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/components/welcome.blade.php
PHP
<div class="p-6 lg:p-8 bg-white border-b border-gray-200"> <x-application-logo class="block h-12 w-auto" /> <h1 class="mt-8 text-2xl font-medium text-gray-900"> Welcome to your Jetstream application! </h1> <p class="mt-6 text-gray-500 leading-relaxed"> Laravel Jetstream provides a beau...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/dashboard.blade.php
PHP
<x-app-layout> <x-slot name="header"> <h2 class="font-semibold text-xl text-gray-800 leading-tight"> {{ __('Dashboard') }} </h2> </x-slot> <div class="py-12"> <div class="max-w-7xl mx-auto sm:px-6 lg:px-8"> <div class="bg-white overflow-hidden shadow-xl sm:ro...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/docs/app.blade.php
PHP
<!DOCTYPE html> <html lang="en"> <head> @include('partials.meta') <!-- Fonts --> <link rel="stylesheet" href="https://use.typekit.net/ins2wgm.css"> <!-- Scripts --> @vite(['resources/css/docs.css', 'resources/js/docs.js']) <!-- Styles --> @livewireStyles @php $routesThatAreA...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/docs/missing.blade.php
PHP
<h1>Page not found.</h1> @if($otherVersions->isEmpty()) <p>Nothing to see here.</p> @else <p>This page does not exist for this version of Laravel but was found in other versions.</p> <div> <ul class="list-custom leading-4 space-y-3"> @foreach($otherVersions as $key => $title) ...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/docs/partials/search.blade.php
PHP
<div class="relative mt-8 flex items-center justify-end w-full h-10 lg:mt-0"> <div class="flex-1 flex items-center"> <button class="relative inline-flex items-center text-gray-800 transition-colors w-full" @click.prevent="$dispatch('toggle-search-modal')" > ...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/docs/partials/sidebar.blade.php
PHP
<aside class="hidden dark:text-gray-200 dark:bg-gradient-to-b dark:from-dark-900 dark:to-dark-700 fixed top-0 bottom-0 left-0 z-20 h-full w-16 bg-gradient-to-b from-gray-100 to-white transition-all duration-300 overflow-hidden lg:sticky lg:w-80 lg:shrink-0 lg:flex lg:flex-col lg:justify-end lg:items-end 2xl:max-w-lg 2x...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/docs/partials/theme-switcher.blade.php
PHP
<div class="hidden lg:flex items-center justify-center ml-8"> <button id="header__sun" onclick="toSystemMode()" title="Switch to system theme" class="relative w-10 h-10 focus:outline-none focus:shadow-outline text-gray-500"> <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-ta...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/docs/partials/version-switcher.blade.php
PHP
<div class="w-full lg:w-40 lg:pl-12"> <div> <label class="text-gray-600 text-xs tracking-widest uppercase" for="version-switcher">Version</label> <div x-data class="relative w-full transition-all duration-500 focus-within:border-gray-600"> <select ...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/docs/show.blade.php
PHP
@extends('docs.app') @section('title', $title . ' - ' . package_to_title($package) . ' - YajraBox') @section('description', "$title $package package documentation.") @section('content') <x-accessibility.skip-to-content-link/> <div class="relative overflow-auto dark:bg-dark-700 dark:text-gray-300" id="docsScr...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/layouts/app.blade.php
PHP
<!DOCTYPE html> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="csrf-token" content="{{ csrf_token() }}"> <title>{{ config('app.name', 'Laravel') }}</title> ...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/layouts/guest.blade.php
PHP
<!DOCTYPE html> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="csrf-token" content="{{ csrf_token() }}"> <title>{{ config('app.name', 'Laravel') }}</title> ...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/partials/analytics.blade.php
PHP
@production <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-L84M3XWG39"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-L84M3XWG...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/partials/footer.blade.php
PHP
@php $is_docs_page = request()->is('docs/*'); @endphp <footer class="relative pt-12 {{ $is_docs_page ? 'dark:bg-dark-700' : '' }}"> <div class="max-w-screen-2xl mx-auto w-full {{ $is_docs_page ? 'px-8' : 'px-5' }}"> <div class="text-center text-xs text-gray-700 sm:text-sm {{ $is_docs_page ? 'dark:text-...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/partials/header.blade.php
PHP
<header x-trap.inert.noscroll="navIsOpen" class="relative z-50 text-gray-700" @keydown.window.escape="navIsOpen = false" @click.away="navIsOpen = false" > <div class="relative max-w-screen-2xl mx-auto w-full py-4 bg-white transition duration-200 lg:bg-transparent lg:py-6"> <d...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/partials/meta.blade.php
PHP
<meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> <meta name="csrf-token" content="{{ csrf_token() }}"> @isset($title) <title>{{ $title }} {{ isset($package) ? '- '. package_to_title($package) : '' }} - {...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/partials/theme.blade.php
PHP
<script> window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', e => { if (localStorage.theme === 'system') { if (e.matches) { document.documentElement.classList.add('dark'); } else { document.documentElement.classList.remove('dar...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
resources/views/welcome.blade.php
PHP
<!DOCTYPE html> <html lang="en"> <head> @include('partials.meta') <!-- Fonts --> <link rel="stylesheet" href="https://use.typekit.net/ins2wgm.css"> <!-- Scripts --> @vite(['resources/css/app.css', 'resources/css/docs.css']) </head> <body x-data="{navIsOpen: false, searchIsOpen: false, search: ''}"...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
routes/api.php
PHP
<?php use Illuminate\Http\Request; use Illuminate\Support\Facades\Route; Route::get('/user', function (Request $request) { return $request->user(); })->middleware('auth:sanctum');
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
routes/console.php
PHP
<?php use Illuminate\Support\Facades\Schedule; Schedule::command('sitemap:generate')->weekly();
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
routes/web.php
PHP
<?php use App\Documentation; use App\Http\Controllers\DocsController; use Illuminate\Support\Facades\Route; use Illuminate\Support\Str; Route::domain('datatables.yajrabox.com')->get('/', function () { return redirect('https://github.com/yajra/laravel-datatables-demo'); }); Route::get('/', function () { $repo...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
tailwind.config.js
JavaScript
import defaultTheme from 'tailwindcss/defaultTheme'; import forms from '@tailwindcss/forms'; import typography from '@tailwindcss/typography'; /** @type {import('tailwindcss').Config} */ export default { important: true, content: [ './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
tests/Feature/ApiTokenPermissionsTest.php
PHP
<?php namespace Tests\Feature; use App\Models\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Support\Str; use Laravel\Jetstream\Features; use Laravel\Jetstream\Http\Livewire\ApiTokenManager; use Livewire\Livewire; use Tests\TestCase; class ApiTokenPermissionsTest extends TestCase { use R...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
tests/Feature/AuthenticationTest.php
PHP
<?php namespace Tests\Feature; use App\Models\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Tests\TestCase; class AuthenticationTest extends TestCase { use RefreshDatabase; public function test_login_screen_can_be_rendered(): void { $response = $this->get('/login'); $resp...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
tests/Feature/BrowserSessionsTest.php
PHP
<?php namespace Tests\Feature; use App\Models\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Laravel\Jetstream\Http\Livewire\LogoutOtherBrowserSessionsForm; use Livewire\Livewire; use Tests\TestCase; class BrowserSessionsTest extends TestCase { use RefreshDatabase; public function test_other_b...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
tests/Feature/CreateApiTokenTest.php
PHP
<?php namespace Tests\Feature; use App\Models\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Laravel\Jetstream\Features; use Laravel\Jetstream\Http\Livewire\ApiTokenManager; use Livewire\Livewire; use Tests\TestCase; class CreateApiTokenTest extends TestCase { use RefreshDatabase; public funct...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
tests/Feature/DeleteAccountTest.php
PHP
<?php namespace Tests\Feature; use App\Models\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Laravel\Jetstream\Features; use Laravel\Jetstream\Http\Livewire\DeleteUserForm; use Livewire\Livewire; use Tests\TestCase; class DeleteAccountTest extends TestCase { use RefreshDatabase; public functio...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
tests/Feature/DeleteApiTokenTest.php
PHP
<?php namespace Tests\Feature; use App\Models\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Support\Str; use Laravel\Jetstream\Features; use Laravel\Jetstream\Http\Livewire\ApiTokenManager; use Livewire\Livewire; use Tests\TestCase; class DeleteApiTokenTest extends TestCase { use Refres...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
tests/Feature/EmailVerificationTest.php
PHP
<?php namespace Tests\Feature; use App\Models\User; use Illuminate\Auth\Events\Verified; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Support\Facades\Event; use Illuminate\Support\Facades\URL; use Laravel\Fortify\Features; use Tests\TestCase; class EmailVerificationTest extends TestCase { us...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.
tests/Feature/ExampleTest.php
PHP
<?php namespace Tests\Feature; // use Illuminate\Foundation\Testing\RefreshDatabase; use Tests\TestCase; class ExampleTest extends TestCase { /** * A basic test example. */ public function test_the_application_returns_a_successful_response(): void { $response = $this->get('/'); ...
yajra/yajrabox.com
10
Source code of yajrabox.com website.
PHP
yajra
Arjay Angeles
ObjectBright, Inc.