Skip to content

Instantly share code, notes, and snippets.

@nikhilj1
Last active December 21, 2017 18:30
Show Gist options
  • Save nikhilj1/09547ae299d2971a81e65060de716141 to your computer and use it in GitHub Desktop.
Save nikhilj1/09547ae299d2971a81e65060de716141 to your computer and use it in GitHub Desktop.
Student isValid
<?php namespace App;
use Illuminate\Database\Eloquent\Model;
class Student extends Model {
public function scopeIsValid($query, $name,$dob){
return (!empty($query->where('name', $name)->where('dob',$dob)->get())?true:false);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment