Looking to hire Laravel developers? Try LaraJobs

datatables-laravel maintained by rcx

Description
Shared RCX Laravel DataTables UI and configuration helpers.
Last update
2026/08/24 16:06 (dev-stage)
License
Downloads
90

Comments
comments powered by Disqus

RCX DataTables Laravel

Shared RCX Laravel DataTables UI helpers extracted from the fulfillment app.

This package owns reusable table infrastructure:

  • Rcx\DataTables\DataTableBuilder
  • <x-rcx-datatables.table :config="$config" />
  • DataTables initialization JS
  • Shared RCX DataTables SCSS

Applications still own their table registries, routes, datasets, SQL/API calls, and row formatting.

Laravel App Wiring

During local development, add this path repository to the consuming Laravel app:

"repositories": [
  {
    "type": "path",
    "url": "../rcxdatatableslaravel",
    "options": {
      "symlink": true,
      "versions": {
        "rcx/datatables-laravel": "dev-development"
      }
    }
  }
],
"require": {
  "rcx/datatables-laravel": "dev-development"
}

The service provider is registered through Laravel package auto-discovery. Import the package JS/SCSS from the installed package:

import '../../vendor/rcx/datatables-laravel/resources/js/rcx-datatables';
@import "../../vendor/rcx/datatables-laravel/resources/sass/rcx-datatables";