addColumn('date', 'added', ['title' => 'Created', 'orderBy' => 'added']); $this->addColumn('text', 'cardCode', ['title' => 'Gift Card Code']); $this->addColumn('date', 'expirationDate', ['title' => 'Exp. Date', 'orderBy' => 'expirationDate']); $this->addColumn('customer', 'customer', ['title' => 'Customer', 'orderBy' => 'customerName']); $this->addColumn('money', 'cardValue', ['title' => 'Value', 'orderBy' => 'cardValue']); $this->addColumn('text', 'statusTitle', ['title' => 'Status', 'orderBy' => 'statusId']); $this->addColumn('options', 'options'); return $this; } }