karbon

$nbofsale = DB::table('st_nsales')
              ->where('brand_id', $brandid)
              ->where('eodata', '>', Carbon::now()->startOfDay());
              ->get();
Sibaprasad Maiti