Skip to content

qtvhao/laravel-grid-collection

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

laravel-grid-collection

Usage

<?php
use App\Helper\Grid\GridCollection;
/** @var GridCollection $gridCustomPayments */
$gridCustomPayments = GridCollection::make( $customPayments );
echo $gridCustomPayments
	->col( 'id' )
	->col( 'title' )
	->col( 'detail' )
	->col( GridColumn::make( 'user.business_name' )->labeled( 'Business Name' ) )
	->col( 'type' )
	->col( 'status' )
	->col( 'total' )
	->col( 'desc' )
	->col( 'error' )
	->col( 'created' )
	->col( 'date_payment' )
	->col( 'modified' );

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • PHP 100.0%