user()->can('ver detalle de ventas'); } public static function form(Form $form): Form { return $form ->schema([ Forms\Components\Select::make('venta_id') ->relationship('venta', 'id') ->required(), Forms\Components\Select::make('producto_id') ->relationship('producto', 'id') ->required(), Forms\Components\TextInput::make('cantidad') ->required() ->numeric(), Forms\Components\TextInput::make('precio_unitario') ->required() ->numeric(), Forms\Components\TextInput::make('subtotal') ->required() ->numeric(), ]); } public static function table(Table $table): Table { return $table ->columns([ Tables\Columns\TextColumn::make('venta.id') ->numeric() ->sortable(), Tables\Columns\TextColumn::make('producto.id') ->numeric() ->sortable(), Tables\Columns\TextColumn::make('cantidad') ->numeric() ->sortable(), Tables\Columns\TextColumn::make('precio_unitario') ->numeric() ->sortable(), Tables\Columns\TextColumn::make('subtotal') ->numeric() ->sortable(), Tables\Columns\TextColumn::make('created_at') ->dateTime() ->sortable() ->toggleable(isToggledHiddenByDefault: true), Tables\Columns\TextColumn::make('updated_at') ->dateTime() ->sortable() ->toggleable(isToggledHiddenByDefault: true), ]) ->paginated(true) //->paginationPageOptions([50]) ->defaultSort('created_at', 'desc') ->filters([ // ]) ->actions([ Tables\Actions\EditAction::make(), ]) ->bulkActions([ Tables\Actions\BulkActionGroup::make([ Tables\Actions\DeleteBulkAction::make(), ]), ]); } public static function getRelations(): array { return [ // ]; } public static function getPages(): array { return [ 'index' => Pages\ListDetalleVentas::route('/'), 'create' => Pages\CreateDetalleVenta::route('/create'), 'edit' => Pages\EditDetalleVenta::route('/{record}/edit'), ]; } }