File: resources/views/admin/settings/interface.blade.php
@extends('twill::layouts.form', [
'contentFieldsetLabel' => 'Home',
])
@section('contentFields')
@formField('input', [
'name' => 'home-a11yHeading',
<?php | |
namespace A17\Twill\Commands; | |
use Carbon\Carbon; | |
use Illuminate\Database\DatabaseManager; | |
use Illuminate\Database\Query\Builder; | |
use Illuminate\Support\Collection; | |
use Illuminate\Support\Str; | |
use A17\Twill\Models\Media; |
/** | |
* The subscriber classes to register. | |
* | |
* @var array | |
*/ | |
protected $subscribe = [ | |
'App\Listeners\TwillEventSubscriber', | |
]; | |
<?php | |
namespace App\Console\Commands; | |
use Illuminate\Console\Command; | |
use Illuminate\Support\Facades\DB; | |
class DeleteCrops extends Command | |
{ | |
/** |
<?php | |
namespace App\Console\Commands; | |
use Illuminate\Console\Command; | |
use Illuminate\Support\Facades\DB; | |
class UpdateCrops extends Command | |
{ | |
/** |
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "cmd+y", | |
"command": "default:redo" | |
}, | |
/** | |
* Activity Bar | |
**/ | |
{ |
{ | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", | |
"editor.formatOnPaste": false, | |
"editor.renderWhitespace": "all", | |
"editor.scrollBeyondLastLine": false, | |
"files.insertFinalNewline": true, | |
"editor.find.seedSearchStringFromSelection": true, | |
"editor.fontSize": 15, | |
"editor.tabSize": 4, |
{ | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Palenight.tmTheme", | |
"default_line_ending": "unix", | |
"draw_white_space": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"fallback_encoding": "UTF-8", | |
"file_exclude_patterns": | |
[ | |
"*.pyc", | |
"*.pyo", |
unset RUBY_AUTO_VERSION | |
function chruby_auto() { | |
local dir="$PWD/" version | |
until [[ -z "$dir" ]]; do | |
dir="${dir%/*}" | |
if { read -r version <"$dir/.ruby-version"; } 2>/dev/null || [[ -n "$version" ]]; then | |
if [[ "$version" == "$RUBY_AUTO_VERSION" ]]; then return |