Columns and fields

Select only needed columns and fields.


public function columns_and_fields()
{
  $xcrud = get_xcrud();
  $xcrud->table('customers');
  $xcrud->columns('customerName,phone,city,country'); // columns in grid
  $xcrud->fields('customerName,creditLimit,salesRepEmployeeNumber'); // fields in details
    
  $data['content'] = $xcrud->render();
  
  return view('demos', $data);
}

Customers

#CustomernamePhoneCityCountry 
1La Rochelle Gifts40.67.8555NantesaaaFrance
2Mini Gifts Distributors Ltd.4155551450San RafaelUSA
3Zbyszek Zbyszek Piestrzeniewicz266427555WarszawaPoland
4Euro+ Shopping Channel(91) 555 94 44MadridSpain
5Danish Wholesale Imports31 12 3555KobenhavnDenmark
6Saveley & Henriot, Co.78.32.5555LyonFrance
7Dragon Souveniers, Ltd.+65 221 7555SingaporeSingapore
8Muscle Machine Inc2125557413NYCUSA
9Technics Stores Inc.6505556809BurlingameUSA
10Handji Gifts& Co+65 224 1555SingaporeSingapore
Search