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 Database\Seeders; | |
| use App\Models\Country; | |
| use Illuminate\Database\Console\Seeds\WithoutModelEvents; | |
| use Illuminate\Database\Seeder; | |
| use Illuminate\Support\Facades\DB; | |
| class CountrySeeder extends Seeder |
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\Filament\Resources\LeadResource\Actions; | |
| use App\Enums\LeadStatusEnum; | |
| use App\Models\Lead; | |
| use App\Models\LeadStatus; | |
| use App\Services\UpdateLeadStatusService; | |
| use App\Traits\HiddenLeadActionsTrait; | |
| use Filament\Forms\Components\RichEditor; |
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\Filament\Pages\Auth; | |
| use App\Helpers\CheckPermissionsHelper; | |
| use Filament\Forms\Components\Section; | |
| use Filament\Forms\Components\Select; | |
| use Filament\Forms\Components\TextInput; | |
| use Filament\Forms\Components\Toggle; | |
| use Filament\Forms\Form; |
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
| <div> | |
| <header class="fi-simple-header py-8"> | |
| <div> | |
| <h1 class="fi-header-heading text-2xl font-bold tracking-tight text-gray-950 dark:text-white sm:text-3xl"> | |
| {{__('My Profile')}} | |
| </h1> | |
| </div> | |
| <p class="fi-simple-header-subheading mt-2 text-left text-sm text-gray-500 dark:text-gray-400"> | |
| {{__('Manager your user profile')}} |
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 '/vendor/filament/filament/resources/css/theme.css'; | |
| @config 'tailwind.config.js'; | |
| /** Romulo Theme */ | |
| /* | |
| .fi-sidebar { | |
| @apply bg-white dark:bg-gray-900 border-r dark:border-white/10 shadow-sm p-0 !important; | |
| } |
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\Providers; | |
| use Filament\Actions; | |
| use Filament\Forms; | |
| use Filament\Infolists; | |
| use Filament\Notifications\Notification; | |
| use Filament\Pages; | |
| use Filament\Support\Enums\MaxWidth; |
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 | |
| // app/providers/Filament/AdminPanelProvider.php | |
| ->spa() | |
| ->spaUrlExceptions(['*/lang/*']) | |
| ->middleware([SetLang::class]) | |
| ->renderHook( | |
| name: PanelsRenderHook::USER_MENU_PROFILE_AFTER, | |
| hook: fn (): View => view(view: 'filament.hooks.lang-switcher'), |
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
| { | |
| "workbench.iconTheme": "symbols", | |
| "git.autofetch": true, | |
| "[dart]": { | |
| "editor.formatOnSave": true, | |
| "editor.formatOnType": true, | |
| "editor.rulers": [80], | |
| "editor.selectionHighlight": false, | |
| "editor.suggest.snippetsPreventQuickSuggestions": false, | |
| "editor.suggestSelection": "first", |
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
| [ | |
| { | |
| "id": 1, | |
| "state_id": 1, | |
| "ibge_code": 1100015, | |
| "name": "Alta Floresta D´oeste" | |
| }, | |
| { | |
| "id": 2, | |
| "state_id": 1, |
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 | |
| $user = filament()->auth()->user(); | |
| $items = filament()->getUserMenuItems(); | |
| $profileItem = $items['profile'] ?? $items['account'] ?? null; | |
| $profileItemUrl = $profileItem?->getUrl(); | |
| $profilePage = filament()->getProfilePage(); | |
| $hasProfileItem = filament()->hasProfile() || filled($profileItemUrl); | |
| $logoutItem = $items['logout'] ?? null; |
OlderNewer