Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yajra/laravel-datatables-demo
Laravel Datatables Package Demo App
https://github.com/yajra/laravel-datatables-demo
Last synced: 21 days ago
JSON representation
Laravel Datatables Package Demo App
- Host: GitHub
- URL: https://github.com/yajra/laravel-datatables-demo
- Owner: yajra
- Created: 2015-04-23T13:35:32.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-01-22T06:03:16.000Z (almost 5 years ago)
- Last Synced: 2024-11-04T22:42:23.827Z (2 months ago)
- Language: HTML
- Homepage: http://datatables.yajrabox.com/
- Size: 1.27 MB
- Stars: 147
- Watchers: 15
- Forks: 75
- Open Issues: 8
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
- awesome - yajra/laravel-datatables-demo - Laravel Datatables Package Demo App (HTML)
README
#Laravel Datatables Demo App
## Datatables Package for Laravel 4|5
[![Latest Stable Version](https://poser.pugx.org/yajra/laravel-datatables-oracle/v/stable.png)](https://packagist.org/packages/yajra/laravel-datatables-oracle)
[![Total Downloads](https://poser.pugx.org/yajra/laravel-datatables-oracle/downloads.png)](https://packagist.org/packages/yajra/laravel-datatables-oracle)
[![Build Status](https://travis-ci.org/yajra/laravel-datatables.png?branch=master)](https://travis-ci.org/yajra/laravel-datatables)
[![Latest Unstable Version](https://poser.pugx.org/yajra/laravel-datatables-oracle/v/unstable.svg)](https://packagist.org/packages/yajra/laravel-datatables-oracle)
[![License](https://poser.pugx.org/yajra/laravel-datatables-oracle/license.svg)](https://packagist.org/packages/yajra/laravel-datatables-oracle)This package is created to handle server-side works of [DataTables](http://datatables.net/) jQuery Plugin via AJAX option by using Eloquent ORM or Fluent Query Builder.
**Note** This demo app aims to guide **artisan developers** on how to use the package by examples.
## Installation
### Step 1: Get the code
- Option 1: Git Clone
```shell
git clone https://github.com/yajra/laravel-datatables-demo.git laravel
```
- Option 2: Download the repository [https://github.com/yajra/laravel-datatables-demo/archive/master.zip](https://github.com/yajra/laravel-datatables-demo/archive/master.zip)### Step 2: Use Composer to install dependencies
- cd /path/to/laravel
- composer install### Step 3: Perform default commands for new projects
- php -r "copy('.env.example', '.env');"
- php artisan key:generate### Step 4: Configure your database
- Check Laravel's Documentation for setting up the database configuration### Step 5: Run migrations and seeders
- cd /path/to/laravel
- php artisan migrate --seed### Step 6: Start Accessing the Demo Site