$primaryresult = DB::table('vehicle_routes')->where('from', $from)->where('to',$to)->get();
if($primaryresult->count())
{
return $primaryresult;
// return "Sorry no data found";
}
else
{
return "Data not found Found";
}
Comments
Post a Comment