All Projects → yajra → laravel-datatables-scout

yajra / laravel-datatables-scout

Licence: MIT license
Laravel DataTables plugin to support Laravel Scout.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to laravel-datatables-scout

Datatables Bundle
DataTables bundle for Symfony
Stars: ✭ 142 (+1083.33%)
Mutual labels:  datatables
Laravel Datatables Buttons
jQuery DataTables Buttons Plugin for Laravel.
Stars: ✭ 192 (+1500%)
Mutual labels:  datatables
Simple-UI-Semantic-UI-Admin
Free Semantic UI (Fomantic-UI) Admin Template
Stars: ✭ 50 (+316.67%)
Mutual labels:  datatables
Material Ui Datatables
An another React Data tables component.
Stars: ✭ 163 (+1258.33%)
Mutual labels:  datatables
Datatables
PHP Library to handle server-side processing for Datatables, in a fast and simple way.
Stars: ✭ 185 (+1441.67%)
Mutual labels:  datatables
elasticscout
ElasticScout is an optimized Laravel Scout driver for Elasticsearch 7.1+
Stars: ✭ 64 (+433.33%)
Mutual labels:  scout
Bootstrap Table
An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation, Vue.js)
Stars: ✭ 11,068 (+92133.33%)
Mutual labels:  datatables
EasyDataTable
易用和全面的纯Ajax分页插件(中文)
Stars: ✭ 18 (+50%)
Mutual labels:  datatables
Laravel Datatables Html
Laravel DataTables HTML Builder Plugin
Stars: ✭ 188 (+1466.67%)
Mutual labels:  datatables
POS---Point-Of-Sales
Point of sales proof of concept developed using Asp.Net Core 2.2. Features: Customer, Vendor, Product, Purchase Order, Goods Receive, Sales Order, Inventory Transactions and POS form.
Stars: ✭ 120 (+900%)
Mutual labels:  datatables
Mui Datatables
Datatables for React using Material-UI - https://www.material-ui-datatables.com
Stars: ✭ 2,246 (+18616.67%)
Mutual labels:  datatables
Mvc.jquery.datatables
ASP MVC Helpers for connecting IQueryables with the amazing DataTables.net plugin
Stars: ✭ 179 (+1391.67%)
Mutual labels:  datatables
powergrid-demo
⚡ PowerGrid fully configured in a Laravel project.
Stars: ✭ 38 (+216.67%)
Mutual labels:  datatables
Bovespastockratings
Crawler for Fundamental analysis platform for BOVESPA stocks, generating a score for each share according to the selected criteria on the indicators.
Stars: ✭ 154 (+1183.33%)
Mutual labels:  datatables
laratables-demo
Demo of the Laratables package
Stars: ✭ 21 (+75%)
Mutual labels:  datatables
Sqlalchemy Datatables
SQLAlchemy integration of jQuery DataTables >= 1.10.x (Pyramid and Flask examples)
Stars: ✭ 136 (+1033.33%)
Mutual labels:  datatables
Django Rest Framework Datatables
Seamless integration between Django REST framework and Datatables.
Stars: ✭ 241 (+1908.33%)
Mutual labels:  datatables
mongo-datatables
A package for using the jQuery plug-in DataTables server-side processing (and DataTables Editor) with MongoDB.
Stars: ✭ 14 (+16.67%)
Mutual labels:  datatables
react-datatable
React-datatable is a component which provide ability to create multifunctional table using single component like jQuery Datatable. It's fully customizable and easy to integrate in any react component. Bootstrap compatible.
Stars: ✭ 72 (+500%)
Mutual labels:  datatables
laravel-vue-datatable
Vue.js Datatable made for Laravel
Stars: ✭ 153 (+1175%)
Mutual labels:  datatables

Laravel DataTables Scout Plugin

Laravel 5.4|5.5 Latest Stable Version Build Status Scrutinizer Code Quality Total Downloads License

This package is a plugin of Laravel DataTables to support searching using Laravel Scout.

Requirements

Documentations

Installation

composer require yajra/laravel-datatables-scout:^1.0

Usage

Use the dataTable class directly.

use Yajra\DataTables\ScoutDataTable;

$model = new App\User;

return (new ScoutDataTable($model))->toJson()

Use via trait.

  1. You need to use ScoutDataTable trait on your model.
use Yajra\DataTables\Traits\ScoutDataTable;

class User extends Model
{
	use ScoutDataTable;
}
  1. Process dataTable directly from your model.
Route::get('users/data', function() {
	return User::dataTable()->toJson();
});

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

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

Buy me a beer

Click here to lend your support to: Laravel DataTables and make a donation at pledgie.com !

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].