omar abdou
omar abdou
FFilament
Created by omar abdou on 3/26/2025 in #❓┊help
Integration with supbase/appwrite
Isn't there a way to wrap supbase/appwrite with eloquent so that It works with filament
9 replies
FFilament
Created by omar abdou on 1/29/2025 in #❓┊help
Uncaught TypeError: Cannot read properties of undefined (reading 'from')
No description
3 replies
FFilament
Created by omar abdou on 1/9/2025 in #❓┊help
Route query string values don't persist with pagination in Table
thanks indeed
11 replies
FFilament
Created by omar abdou on 1/9/2025 in #❓┊help
Route query string values don't persist with pagination in Table
thanks this works,
class ManageBeneficiaryTransactions extends ManageRecords
{
#[URL]
public ?string $record;
protected static string $resource = BeneficiaryTransactionResource::class;

protected function getHeaderActions(): array
{
return [
Actions\CreateAction::make(),
];
}

protected function getTableQuery(): Builder
{
return parent::getTableQuery()
->where('user_id', $this->record);
}

}
class ManageBeneficiaryTransactions extends ManageRecords
{
#[URL]
public ?string $record;
protected static string $resource = BeneficiaryTransactionResource::class;

protected function getHeaderActions(): array
{
return [
Actions\CreateAction::make(),
];
}

protected function getTableQuery(): Builder
{
return parent::getTableQuery()
->where('user_id', $this->record);
}

}
after i added in my ManageRecords
11 replies
FFilament
Created by omar abdou on 1/9/2025 in #❓┊help
Route query string values don't persist with pagination in Table
<?php

namespace App\Filament\Manager\Resources;

use App\Enum\TransactionClassification;
use App\Filament\Manager\Resources\BeneficiaryTransactionResource\Pages;
use App\Filament\Manager\Resources\BeneficiaryTransactionResource\RelationManagers;
use App\Filament\SharedForm\TransactionForm;
use App\Models\BeneficiaryTransaction;
use App\Models\Transaction;
use Filament\Forms;
use Filament\Forms\Form;
use Filament\Resources\Resource;
use Filament\Tables;
use Filament\Tables\Table;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\SoftDeletingScope;
use Illuminate\Support\Facades\URL;

class BeneficiaryTransactionResource extends Resource
{
protected static ?string $model = Transaction::class;

#[URL]
public ?string $record;

protected static ?string $navigationIcon = 'heroicon-o-rectangle-stack';

public static function form(Form $form): Form
{
return $form
->schema([
//
]);
}

public static function shouldRegisterNavigation(): bool
{
return false;
}

public static function table(Table $table): Table
{
return $table
->defaultSort('created_at', 'desc')
->columns(TransactionForm::tableBeneficiarySchema())
->persistFiltersInSession()
->persistSortInSession();

}


protected function getTableQuery(): Builder
{
return parent::getTableQuery()
->where('user_id', $this->record);
}

public static function getPages(): array
{
return [
'index' => Pages\ManageBeneficiaryTransactions::route('/'),
];
}
}
<?php

namespace App\Filament\Manager\Resources;

use App\Enum\TransactionClassification;
use App\Filament\Manager\Resources\BeneficiaryTransactionResource\Pages;
use App\Filament\Manager\Resources\BeneficiaryTransactionResource\RelationManagers;
use App\Filament\SharedForm\TransactionForm;
use App\Models\BeneficiaryTransaction;
use App\Models\Transaction;
use Filament\Forms;
use Filament\Forms\Form;
use Filament\Resources\Resource;
use Filament\Tables;
use Filament\Tables\Table;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\SoftDeletingScope;
use Illuminate\Support\Facades\URL;

class BeneficiaryTransactionResource extends Resource
{
protected static ?string $model = Transaction::class;

#[URL]
public ?string $record;

protected static ?string $navigationIcon = 'heroicon-o-rectangle-stack';

public static function form(Form $form): Form
{
return $form
->schema([
//
]);
}

public static function shouldRegisterNavigation(): bool
{
return false;
}

public static function table(Table $table): Table
{
return $table
->defaultSort('created_at', 'desc')
->columns(TransactionForm::tableBeneficiarySchema())
->persistFiltersInSession()
->persistSortInSession();

}


protected function getTableQuery(): Builder
{
return parent::getTableQuery()
->where('user_id', $this->record);
}

public static function getPages(): array
{
return [
'index' => Pages\ManageBeneficiaryTransactions::route('/'),
];
}
}
this is what i have but still doest work , getTableQuery is completely ignored
11 replies
FFilament
Created by omar abdou on 1/9/2025 in #❓┊help
Route query string values don't persist with pagination in Table
it is inside a resource class BeneficiaryTransactionResource extends Resource
11 replies
FFilament
Created by omar abdou on 1/5/2025 in #❓┊help
How to set tags to a TagsInput using $set
11 replies
FFilament
Created by omar abdou on 1/5/2025 in #❓┊help
How to set tags to a TagsInput using $set
$livewire->mountedActionsData['tags'][] = $data['employee_id']; does not throw an error but tags are not set , the input has no value
11 replies
FFilament
Created by omar abdou on 1/5/2025 in #❓┊help
How to set tags to a TagsInput using $set
No description
11 replies
FFilament
Created by omar abdou on 1/5/2025 in #❓┊help
How to set tags to a TagsInput using $set
as you can see in tthe image , i added an action on the right , i am setting the tags from that action
11 replies
FFilament
Created by farhanali on 1/5/2025 in #❓┊help
Need help with DateTimePicker
Same to me , when ->native(false) it displays a different component
17 replies