Remove LESS instructions, we use internal commands now

Timestamps don't need to be included in theme data
This commit is contained in:
Samuel Georges 2016-06-01 05:54:35 +10:00
parent 60602c5455
commit 7a38d522db
2 changed files with 1 additions and 7 deletions

View File

@ -33,12 +33,6 @@ Please follow the following guides and code standards:
The CMS uses [Laravel](http://laravel.com) as a foundation PHP framework.
### Using LESS
The theme is based on the Twitter Bootstrap framework and uses the LESS language for generating the CSS. Please use a suitable LESS application for compiling the **assets/less/*.less** file to **assets/css/*.css**. The following application is recommended:
* [Koala](http://koala-app.com/)
### Contact
You can communicate with us using the following mediums:

View File

@ -49,7 +49,7 @@ class ThemeData extends Model
/*
* Dynamic attributes are stored in the jsonable attribute 'data'.
*/
$staticAttributes = ['id', 'theme', 'data'];
$staticAttributes = ['id', 'theme', 'data', 'created_at', 'updated_at'];
$dynamicAttributes = array_except($this->getAttributes(), $staticAttributes);
$this->data = $dynamicAttributes;