Gallery
Photo gallery.
public function gallery() { $xcrud = get_xcrud(); $xcrud->table('gallery'); $xcrud->change_type('image', 'image', false, array( 'width' => 450, 'path' => realpath(FCPATH . 'assets/uploads/gallery'), 'thumbs' => array(array( 'height' => 55, 'width' => 120, 'crop' => true, 'marker' => '_th')))); $data['content'] = $xcrud->render(); return view('demos', $data); }