Single Blog: October cms portfolio plugin

Lorem ipsum dolor sit amet consectetur.

portfolio.jpg

October cms portfolio plugin

May 01, 2017

Recently I have used the portfolio plugin for this website, the plugin by arrizalamin works great, totally what I need to display my portfolio of work. The plugin also have a portfolio details page which can be easily customized. The plugin is build with one thing in mind to display the portfolio, the plugin does that well. Only issue is though it has the option of how the 'order' be? Ascending or Descending but descending option don't work by default it is ascending when the option is changed on the code the visual dont. Here are the code changes suggested, on the portfolio plugin,

components/Portfolio.php

// check if a valid object has been created

if( !$object ){
              // display all items
 -            $this->portfolio = Item::paginate($this->property('itemsPerPage'), $this->property('pageNumber'));
 +            $this->portfolio = Item::orderBy('created_at', $this->property('order'))->paginate($this->property('itemsPerPage'), $this->property('pageNumber'));
          }else{
              // show the items in the portfolio
              $this->portfolio = $object->items()

Posted Under - in October Plugins