Proje dosyaları eklendi

This commit is contained in:
2026-08-29 15:53:53 +03:00
commit d3313400ca
440 changed files with 24827 additions and 0 deletions
@@ -0,0 +1,51 @@
<?php
namespace App\Filament\Resources\Keywords;
use App\Filament\Resources\Keywords\Pages\ListKeywords;
use App\Filament\Resources\Keywords\Pages\ViewKeyword;
use App\Filament\Resources\Keywords\Schemas\KeywordInfolist;
use App\Filament\Resources\Keywords\Tables\KeywordsTable;
use App\Models\Keyword;
use BackedEnum;
use Filament\Resources\Resource;
use Filament\Schemas\Schema;
use Filament\Support\Icons\Heroicon;
use Filament\Tables\Table;
class KeywordResource extends Resource
{
protected static ?string $model = Keyword::class;
protected static string|BackedEnum|null $navigationIcon = Heroicon::OutlinedMagnifyingGlass;
public static function getNavigationLabel(): string
{
return __('ui.keywords');
}
public static function getModelLabel(): string
{
return __('resources.keyword');
}
public static function getPluralModelLabel(): string
{
return __('ui.keywords');
}
public static function infolist(Schema $s): Schema
{
return KeywordInfolist::configure($s);
}
public static function table(Table $t): Table
{
return KeywordsTable::configure($t);
}
public static function getPages(): array
{
return ['index' => ListKeywords::route('/'), 'view' => ViewKeyword::route('/{record}')];
}
}
@@ -0,0 +1,16 @@
<?php
namespace App\Filament\Resources\Keywords\Pages;
use App\Filament\Resources\Keywords\KeywordResource;
use Filament\Resources\Pages\ListRecords;
class ListKeywords extends ListRecords
{
protected static string $resource = KeywordResource::class;
protected function getHeaderActions(): array
{
return [];
}
}
@@ -0,0 +1,16 @@
<?php
namespace App\Filament\Resources\Keywords\Pages;
use App\Filament\Resources\Keywords\KeywordResource;
use Filament\Resources\Pages\ViewRecord;
class ViewKeyword extends ViewRecord
{
protected static string $resource = KeywordResource::class;
protected function getHeaderActions(): array
{
return [];
}
}
@@ -0,0 +1,25 @@
<?php
namespace App\Filament\Resources\Keywords\Schemas;
use Filament\Infolists\Components\TextEntry;
use Filament\Schemas\Schema;
class KeywordInfolist
{
public static function configure(Schema $schema): Schema
{
return $schema->components([
TextEntry::make('phrase')->label(__('admin.keyword')),
TextEntry::make('project.name')->label(__('admin.project')),
TextEntry::make('project.domain')->label(__('admin.domain')),
TextEntry::make('project.user.email')->label(__('admin.customer')),
TextEntry::make('search_engine')->label(__('admin.engine'))->formatStateUsing(fn ($state) => $state->label()),
TextEntry::make('country_code')->label(__('admin.country')),
TextEntry::make('language_code')->label(__('admin.language')),
TextEntry::make('device')->label(__('admin.device'))->formatStateUsing(fn ($state) => $state->label()),
TextEntry::make('status')->label(__('admin.status'))->badge()->formatStateUsing(fn ($state) => $state->label()),
TextEntry::make('ulid')->label('ULID'),
]);
}
}
@@ -0,0 +1,49 @@
<?php
namespace App\Filament\Resources\Keywords\Tables;
use App\Enums\KeywordStatus;
use App\Models\Keyword;
use App\Support\KeywordTargetOptions;
use Filament\Actions\Action;
use Filament\Actions\ViewAction;
use Filament\Tables\Columns\TextColumn;
use Filament\Tables\Filters\SelectFilter;
use Filament\Tables\Table;
class KeywordsTable
{
public static function configure(Table $table): Table
{
return $table->modifyQueryUsing(fn ($query) => $query->with('project.user'))
->columns([
TextColumn::make('phrase')->label(__('admin.keyword'))->searchable()->sortable(),
TextColumn::make('project.name')->label(__('admin.project'))->searchable(),
TextColumn::make('project.domain')->label(__('admin.domain'))->searchable(),
TextColumn::make('project.user.email')->label(__('admin.customer'))->searchable(),
TextColumn::make('search_engine')->label(__('admin.engine'))->formatStateUsing(fn ($state) => $state->label()),
TextColumn::make('country_code')->label(__('admin.country')),
TextColumn::make('language_code')->label(__('admin.language')),
TextColumn::make('device')->label(__('admin.device'))->formatStateUsing(fn ($state) => $state->label()),
TextColumn::make('status')->label(__('admin.status'))->badge()->formatStateUsing(fn ($state) => $state->label()),
TextColumn::make('created_at')->label(__('admin.created_at'))->dateTime('d.m.Y H:i')->sortable(),
TextColumn::make('updated_at')->label(__('admin.updated_at'))->dateTime('d.m.Y H:i')->sortable(),
])
->filters([
SelectFilter::make('status')->options(['active' => __('states.active'), 'archived' => __('states.archived')]),
SelectFilter::make('search_engine')->options(['google' => 'Google', 'bing' => 'Bing']),
SelectFilter::make('country_code')->options(KeywordTargetOptions::countries()),
SelectFilter::make('language_code')->options(KeywordTargetOptions::languages()),
SelectFilter::make('device')->options(['desktop' => __('states.desktop'), 'mobile' => __('states.mobile')]),
])
->recordActions([
ViewAction::make(),
Action::make('archive')->label(__('admin.archive'))->requiresConfirmation()
->visible(fn (Keyword $record) => $record->status === KeywordStatus::Active && auth()->user()->can('archive', $record))
->action(fn (Keyword $record) => $record->archive()),
Action::make('restore')->label(__('admin.restore'))
->visible(fn (Keyword $record) => $record->status === KeywordStatus::Archived && auth()->user()->can('restore', $record))
->action(fn (Keyword $record) => $record->restoreKeyword()),
])->toolbarActions([]);
}
}