This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# If there is a command, execute it. | |
if [ "$#" -ne 0 ]; then | |
exec "$@" | |
fi | |
SQLCMD="/opt/mssql-tools/bin/sqlcmd" | |
# If the container uses the latest Microsoft SQL tools, use that command instead. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Database\Seeders; | |
use Closure; | |
use Illuminate\Console\View\Components\TwoColumnDetail; | |
use Illuminate\Contracts\Container\Container; | |
use Illuminate\Contracts\Database\Query\Builder; | |
use Illuminate\Database\Eloquent\Collection as EloquentCollection; | |
use Illuminate\Database\Eloquent\Factories\Factory; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @mixin \Illuminate\Database\Eloquent\Builder | |
* | |
* @method \Illuminate\Database\Eloquent\Builder|static newQuery() | |
* @method static \Illuminate\Database\Eloquent\Builder|static query() | |
* @method static static make(array $attributes = []) | |
* @method static static create(array $attributes = []) | |
* @method static static forceCreate(array $attributes) | |
* @method static static forceCreateQuietly(array $attributes = []) | |
* @method static|null first($columns = ['*'], string ...$columns) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/arm64 5.15.137 Kernel Configuration | |
# | |
CONFIG_CC_VERSION_TEXT="aarch64-openwrt-linux-musl-gcc (OpenWrt GCC 13.1.0 r23630-842932a63d) 13.1.0" | |
CONFIG_CC_IS_GCC=y | |
CONFIG_GCC_VERSION=130100 | |
CONFIG_CLANG_VERSION=0 | |
CONFIG_AS_IS_GNU=y | |
CONFIG_AS_VERSION=24000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Scopes; | |
use Illuminate\Database\Eloquent\Builder; | |
use Illuminate\Database\Eloquent\Model; | |
use Illuminate\Database\Eloquent\Scope; | |
use Illuminate\Support\Collection; | |
use ReflectionClass | |
use SplFixedArray; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use Illuminate\Contracts\Support\Arrayable; | |
use Illuminate\Support\Str; | |
use Inertia\Inertia; | |
use function is_array; | |
use function ucfirst; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="trix-editor"> | |
<textarea | |
:id="formId" | |
type="hidden" | |
ref="input" | |
:value="modelValue" | |
@input="$emit('update:modelValue', $event.target.value)" | |
style="display:none;" | |
><slot /></textarea> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Database\Factories; | |
use Illuminate\Support\Facades\Hash; | |
trait StaticPassword | |
{ | |
/** | |
* An 8-character password containing lower case, upper case, an special caracter and a number. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "laragear/subscriptions", | |
"description": "Subscriptions on-premises, without any payment system!", | |
"type": "library", | |
"license": "MIT", | |
"minimum-stability": "stable", | |
"prefer-stable": true, | |
"authors": [ | |
{ | |
"name": "Italo Baeza C.", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Middleware; | |
use Closure; | |
use Illuminate\Http\Request; | |
use Illuminate\Validation\ValidationException; | |
use Illuminate\Support\Facades\Date; | |
use Illuminate\Support\Facades\Hash; | |
use Illuminate\Support\Facades\Lang; |
NewerOlder