Guest User

Untitled

a guest
Nov 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2. class Language extends Aware {
  3.  
  4. public static $rules = array(
  5. 'title' => 'required',
  6. 'tld' => 'required',
  7. 'currency' => 'required'
  8. );
  9.  
  10. public function products() {
  11. return $this->has_many_and_belongs_to('Product')->with(array('title', 'slug', 'description', 'keywords', 'price', 'purchases', 'active'));
  12. }
  13.  
  14. }
Add Comment
Please, Sign In to add comment