예제 #1
0
파일: Section.php 프로젝트: graftphp/clout
 public function checkSlug($slug)
 {
     $out = Record::where('section', '=', $this->id)->where('slug', '=', $slug)->get()->count();
     return $out == 0 ? true : false;
 }