Laravel Database Queries Query 12=>Show or get recently or last 6 data entered by user Three method : first method $dogs = Package::orderBy(‘id’, ‘desc’)->take(5)->get(); return $dogs; Second Method $dogs = Package::latest()->take(5)->get(); return $dogs; third Method $dogs= Package::orderBy(‘id’, ‘DESC’)->limit(5)->get(); return $dogs; Query 13=>Get all data except skip 4 first data which is added by tour Operator Read More

Read More

Source:-analyticsindiamag.com Web frameworks are usually used by the developers to ease the building process of web applications. They help developers to concentrate more on the task rather than the complex coding part. According to the Stack Overflow Developer Survey 2019, among nearly 90,000 developers, 63,585 developers chose the most loved web frameworks where jQuery, React.js Read More

Read More
Artificial Intelligence