A Filament plugin for creating and managing decision tables (rules engine). Empower business users to create, update, and review complex decision logic through an intuitive visual interface - no code required.
This file contains hidden or 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 | |
| set -euo pipefail | |
| APP_DIRS=( | |
| "/Applications" | |
| "$HOME/Applications" | |
| ) | |
| if ! command -v brew >/dev/null 2>&1; then | |
| echo "Error: Homebrew not found in PATH" >&2 |
This file contains hidden or 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
| { | |
| "alwaysThinkingEnabled": true, | |
| "statusLine": { | |
| "type": "command", | |
| "command": "npx -y ccstatusline@latest", | |
| "padding": 0 | |
| }, | |
| "hooks": { | |
| "PreToolUse": [ | |
| { |
This file contains hidden or 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\Console\Commands; | |
| use Illuminate\Console\Command; | |
| use Illuminate\Support\Facades\DB; | |
| use Illuminate\Support\Facades\File; | |
| use Illuminate\Support\Facades\Schema; | |
| class MigrateFreshPreserve extends Command |
This file contains hidden or 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 | |
| use Filament\Actions; | |
| use Filament\Notifications\Actions\Action; | |
| use Filament\Notifications\Notification; | |
| use Filament\Facades\Filament; | |
| public function boot(): void | |
| { | |
| Actions\CreateAction::configureUsing(function (Actions\CreateAction $action): void { |
This file contains hidden or 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\Console\Commands; | |
| use Illuminate\Console\Command; | |
| use Illuminate\Filesystem\Filesystem; | |
| class ConfigDiffVendorCommand extends Command | |
| { | |
| protected $signature = 'config:diff-vendor |
This file contains hidden or 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\Concerns; | |
| use Filament\Support\Icons\Heroicon; | |
| use BackedEnum; | |
| use Illuminate\Contracts\Support\Htmlable; | |
| trait HasActiveIcon | |
| { |
This file contains hidden or 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
| [core] | |
| excludesfile = ~/.gitignore | |
| editor = subl -n -w | |
| # pager = diff-so-fancy | less -r | |
| autocrlf = input | |
| #[include] | |
| # path = ~/.gitconfig.local | |
| [alias] | |
| cp = cherry-pick | |
| st = status -s |
This file contains hidden or 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
| import defaultTheme from 'tailwindcss/defaultTheme' | |
| /** @type {import('tailwindcss').Config} */ | |
| const config = { | |
| content: [ | |
| './js/**/*.{js,vue}', | |
| ], | |
| darkMode: 'false', |
This file contains hidden or 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\Concerns; | |
| use Illuminate\Contracts\Database\Eloquent\Builder; | |
| use Illuminate\Database\Eloquent\Model; | |
| use Illuminate\Database\Eloquent\SoftDeletes; | |
| trait HasPrimary | |
| { |
NewerOlder
