0.2.1 • Published 4 years ago

@laratable/laratable v0.2.1

Weekly downloads
10
License
MIT
Repository
github
Last release
4 years ago

Laratable

A Vanilla JS AJAX Library to make dynamic HTML Tables for Laravel's Eloquent.

Why?

Since Laravel is nice, you deserve a nice dynamic table as well!

It was craft with Laravel's Eloquent in mind, so if you love Laravel, you'll probably love Laratable too.

Don't feel shy and let me know if you find any issues, or have any suggestion!

Getting Started

You can install Laratable as any ordinary NPM package:

npm install @laratable/laratable

Then, you need to have a view rendering a semantic table:

 <table class="laratable table table-bordered">
      <thead>
        <tr>
          <th>ID</th>
          <th>First Name</th>
          <th>Last Name</th>
          <th>Bith Date</th>
          <th>Gender</th>
          <th>Actions</th>
        </tr>
      </thead>
    </table>

IMPORTANT: By semantic its meant to have TABLE > THEAD > TR > TD|TH HTML Elements. If the table is somehow not displayed, please check you browser's console in order to get detailed error messages to help you correct any possible mistakes.

And instanciate Laratable with some required options:

import Laratable from '@laratable/laratable';

Laratable.view('.laratable', {
  url: '/employees',
  columns: [
    { name: 'id' },
    { name: 'first_name' },
    { name: 'last_name' },
    { name: 'birth_date' },
    { name: 'gender' },
    { name: 'actions', searchable: false, orderable: false }
  ]
}); 

The API is too simple, just pay attention and you'll figure it out by yourself.

Styling and Theming

Since it's just a wrapper for your tables, you can use whatever styles you already have.

Just for the sake of practicality, this guide uses Bootstrap 4.

Don't feel shy to use the CSS framework you love!

0.2.1

4 years ago

0.2.0

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.0

4 years ago