2017 © Pedro Peláez
 

library ordering

Laravel package to order rows of DB table by 'drug and drop'

image

vadiasov/ordering

Laravel package to order rows of DB table by 'drug and drop'

  • Friday, March 16, 2018
  • by vadiasov
  • Repository
  • 0 Watchers
  • 0 Stars
  • 18 Installations
  • HTML
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 7 Versions
  • 20 % Grown

The README.md

vadiasov/ordering

Laravel package to order rows of DB table by 'drug and drop'., (*1)

Goals

  1. Create ordering of given rows of DB table and save ordering in the same table.
  2. Ordering is made by Drug and Drop technology.

Workflow

  1. Parent page has set of rows.
  2. Row has column 'order' (or other with the same sense).
  3. Parent page has button "Order".
  4. After clicking on the button "Order" page "Ordering" is open (child page).
  5. Making of ordering.
  6. Child page has button "Save and back".
  7. Clicking on the button "Save and back" leads to parent page.

Config of parent page

  • Column name of "order" column
  • DB table name
  • Array of columns that are shown in the child page
  • Title of "Save and back" button.

Example:, (*2)

<?php

return [
    'order'          => 'order',
    'db_table'       => 'tracks',
    'fields_to_show' => ['order', 'title', 'file'],
    'buton_title'    => 'Save and back',
    'box_title'      => 'Tracks of Album ',
];

Using

Parent page has button "Order" with href, (*3)

/ordering/{config_name}

Installation

1.Create row in the application root composer:, (*4)

"require": {
      ...
        "vadiasov/ordering": "^0.1.1",
      ...  
    },

2.Run in your terminal:, (*5)

cd your_application_root
composer update

3.This package is developed with discovery feature. So it must itself to create row in a config/app.com about ServiceProvider:, (*6)

/*
 * Package Service Providers...
 */
...
Vadiasov\Ordering\OrderingServiceProvider::class,

4.Edit config file that you will use in outer controller to start upload (for example: config/tracks.php):, (*7)

The Versions

16/03 2018

dev-master

9999999-dev

Laravel package to order rows of DB table by 'drug and drop'

  Sources   Download

MIT

The Requires

 

16/03 2018

2.0.1

2.0.1.0

Laravel package to order rows of DB table by 'drug and drop'

  Sources   Download

MIT

The Requires

 

16/03 2018

2.0.0

2.0.0.0

Laravel package to order rows of DB table by 'drug and drop'

  Sources   Download

MIT

The Requires

 

13/03 2018

1.1.0

1.1.0.0

Laravel package to order rows of DB table by 'drug and drop'

  Sources   Download

MIT

The Requires

 

13/03 2018

1.0.1

1.0.1.0

Laravel package to order rows of DB table by 'drug and drop'

  Sources   Download

MIT

The Requires

 

13/03 2018

1.0.0

1.0.0.0

Laravel package to order rows of DB table by 'drug and drop'

  Sources   Download

MIT

The Requires

 

12/03 2018

0.0.1

0.0.1.0

Laravel package to order rows of DB table by 'drug and drop'

  Sources   Download

MIT

The Requires