You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.0 KiB
PHP
64 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\InvoiceResource\RelationManagers;
|
|
|
|
use Filament\Forms;
|
|
use Filament\Forms\Form;
|
|
use Filament\Resources\RelationManagers\RelationManager;
|
|
use Filament\Tables;
|
|
use Filament\Tables\Table;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
class OrdersRelationManager extends RelationManager
|
|
{
|
|
protected static string $relationship = 'orders';
|
|
|
|
public function form(Form $form): Form
|
|
{
|
|
return $form
|
|
->schema([
|
|
Forms\Components\TextInput::make('customer_po')
|
|
->required()
|
|
->maxLength(100),
|
|
]);
|
|
}
|
|
|
|
public function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->recordTitleAttribute('customer_po')
|
|
->columns([
|
|
Tables\Columns\TextColumn::make('customer_po')
|
|
->color('code')
|
|
->weight('bold'),
|
|
Tables\Columns\TextColumn::make('total_product_quantity'),
|
|
Tables\Columns\TextColumn::make('total_service_price')
|
|
->prefix('$'),
|
|
])
|
|
->filters([
|
|
//
|
|
])
|
|
->headerActions([
|
|
Tables\Actions\AssociateAction::make()
|
|
->multiple()
|
|
->preloadRecordSelect()
|
|
->recordSelectOptionsQuery(fn (Builder $query) => $query->where('customer_id', $this->ownerRecord->customer->id))
|
|
->after(function () {
|
|
$this->ownerRecord->calculateTotals();
|
|
}),
|
|
])
|
|
->actions([
|
|
Tables\Actions\DissociateAction::make()
|
|
->after(function () {
|
|
$this->ownerRecord->calculateTotals();
|
|
}),
|
|
])
|
|
->bulkActions([
|
|
Tables\Actions\BulkActionGroup::make([
|
|
Tables\Actions\DissociateBulkAction::make(),
|
|
]),
|
|
])
|
|
->inverseRelationship('invoice');
|
|
}
|
|
}
|