Your IP : 216.73.216.79


Current Path : /var/www/html/dynaweb-starter/plugin/dynaweb-theme/src/Repositories/
Upload File :
Current File : /var/www/html/dynaweb-starter/plugin/dynaweb-theme/src/Repositories/ThemeRulesRepository.php

<?php

namespace Dynaweb\DynawebTheme\Repositories;

class ThemeRulesRepository extends BaseRepository
{
    /** get all overide only on active */
    public function getAll()
    {
        return $this->model::active()->get();
    }

    /***
     * Save property
     */
    public function saveProperty(array $states, $id=null)
    {
        return empty($id)
        ? $this->model::create($states)
        : $this->model::where('id', $id)->update($states);
    }

}