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\PageTemplates; | |
use Filament\Forms\Components\Repeater; | |
use Filament\Forms\Components\RichEditor; | |
use Filament\Forms\Components\TextInput; | |
final class Faq | |
{ |
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 App\Filament\Resources\CompanyResource\Pages\CreateCompany; | |
use App\Filament\Resources\CompanyResource\Pages\EditCompany; | |
use App\Filament\Resources\CompanyResource\Pages\ListCompanies; | |
use App\Models\Company; | |
use Filament\Actions\DeleteAction; | |
use Filament\Tables\Actions\DeleteBulkAction; | |
use Illuminate\Support\Str; |
OlderNewer