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 
1Zbyszek Zbyszek Piestrzeniewicz266427555WarszawaPoland
2Euro+ Shopping Channel(91) 555 94 44MadridSpain
3Danish Wholesale Imports31 12 3555KobenhavnDenmark
4Saveley & Henriot, Co.78.32.5555LyonFrance
5Dragon Souveniers, Ltd.+65 221 7555SingaporeSingapore
6Muscle Machine Inc2125557413NYCUSA
7Technics Stores Inc.6505556809BurlingameUSA
8Handji Gifts& Co+65 224 1555SingaporeSingapore
9Herkku Gifts+47 2267 3215BergenNorway
10Joe2035557845New HavenUSA
Search