Guest User

Untitled

a guest
Nov 19th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. class Product extends Aware {
  3.  
  4. public static $rules = array(
  5. 'sku' => 'required',
  6. 'quantity' => 'required|integer',
  7. 'cost' => 'required|numeric'
  8. );
  9.  
  10. public function languages() {
  11. return $this->has_many_and_belongs_to('Language');
  12. }
  13.  
  14. public function images() {
  15. return $this->has_many('Image');
  16. }
  17.  
  18. }
Add Comment
Please, Sign In to add comment