laravel-livewire-tables icon indicating copy to clipboard operation
laravel-livewire-tables copied to clipboard

A dynamic table component for Laravel Livewire

Results 61 laravel-livewire-tables issues
Sort by recently updated
recently updated
newest added

### What happened? public function seller() { return $this->belongsTo(User::class, 'seller_id')->withTrashed(); } /** * Get order items * * @return object */ public function items() { return $this->hasMany(OrderItem::class, 'order_id'); } Column::make("Buyer",...

bug