Download the PHP package hamidrrj/laravel-datatable without Composer

On this page you can find all versions of the php package hamidrrj/laravel-datatable. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-datatable

Laravel Datatable

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Laravel Datatable is a package designed to handle server-side logic for datatables in Laravel applications.

Key Features

Requirements

Installation

You can install the package via composer:

After installation, publish the package's service provider using one of the following methods:

Option 1: Automatic Installation (Recommended)

Run the following Artisan command:

Option 2: Manual Installation

Publish the provider manually:

Then, add the following line to the providers array in config/app.php:

Usage

This section covers various use cases and features of Laravel Datatable. From basic querying to advanced filtering and relationship handling, you'll find examples to help you make the most of this package.

Table of Contents

Method Parameters

The run method of DatatableFacade accepts the following parameters:

  1. $mixed: Model instance or query builder instance to perform queries on.
  2. $requestParameters: Contains parameters like filter, sorting, size, and start of required data.
  3. $allowedFilters: (Optional) Specifies columns users are allowed to filter on.
  4. $allowedSortings: (Optional) Specifies columns users are allowed to sort on.
  5. $allowedSelects: (Optional) Specifies which columns users can actually see.
  6. $allowedRelations: (Optional) Specifies which model relations users are allowed to filter on.

Filter Array Structure

Each filter in the filters array should have the following attributes:

Return Data Structure

The run method returns an array with the following structure:

Basic Usage

Here's a simple example of requesting a chunk of 10 users starting from the 11th record (i.e., page 2 of the datatable):

Using Query Builder

You can use a query builder instance instead of a model instance:

Advanced Filtering and Sorting

Here's an example of filtering users whose ages are greater than 15, sorted by creation date in descending order:

Note: Ensure that columns used for filtering and sorting are included in the $allowedFilters and $allowedSortings arrays to avoid InvalidFilterException and InvalidSortingException.

Using between search function

Here's an example of filtering users whose creation dates are between two dates:

Note: Using $allowedSelects will only return specified columns in the query result:

Filtering Model's Relationship

In this example, we filter only users who have posts that contain 'my post' in their titles:

Note:

Testing

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-datatable with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1|^8.0
spatie/laravel-package-tools Version ^1.14.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package hamidrrj/laravel-datatable contains the following files

Loading the files please wait ....