Download the PHP package lucianolima00/laravel-grid-view without Composer

On this page you can find all versions of the php package lucianolima00/laravel-grid-view. 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-grid-view

Laravel Grid View

Latest Stable Version Latest Unstable Version License Total Downloads Build Status Scrutinizer Code Quality

Introduction

This package is to displaying the model data in a Grid table.

Grid view appearance

Requirements

Installation

General from remote packagist repository

Run the composer command:

composer require lucianolima00/laravel-grid-view "~1.0.19"

If you are testing this package from a local server directory

In application composer.json file set the repository, as in example:

Here,

../laravel-grid-view - directory path, which has the same directory level as application and contains Grid View package.

Then run command:

composer require lucianolima00/laravel-grid-view:dev-master --prefer-source

Registration

Register service provider in config/app.php

Publish files (Not necessary)

Usage

Make sure you use a Bootstrap 4 for styling and JQuery in your application.

Controller part

Must use EloquentDataProvider to insert data in to the view template.

For EloquentDataProvider class constructor use a model query object.

Example:

View template part

Use @gridView() directive with config array in a blade view template.

Simple quick usage

You can simply set columns to display as string format in columnFields array.

Note:

There search filter fields are displayed automatically. By default text form field filters are used.

If you don't want to use search filters, set useFilters = false.

Alternative variant without a blade directive:

Setting custom options

Main columns

Simple example:

Special columns

Besides main columns, there can be the next special columns:

Filters

There are the next filter's variants:

Formatters

There are the next formatter keys:

For that keys there are the next formatters:

Also you can set formatter with some addition options. See the next simple example:

Existing form areas and main buttons

Grid view forms

There are two main form areas:

Complex extended example

License

Copyright © 2020-2023 Andrey Girnik [email protected].

Licensed under the MIT license. See LICENSE.txt for details.


All versions of laravel-grid-view with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1.0
laravel/framework Version ~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.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 lucianolima00/laravel-grid-view contains the following files

Loading the files please wait ....