Achieve the World’s Most Prestigious Certifications and Unlock Top-Paying Careers! Get Certified in the Industry’s Leading Programs Today.
🚀 DevOps Certified Professional 🚀 SRE Certified Professional 🚀 DevSecOps Certified Professional 🚀 MLOps Certified Professional
📅 Starting: 1st of Every Month 🤝 +91 8409492687 | 🤝 +1 (469) 756-6329 🔍 Contact@DevOpsSchool.com

Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!

Learn from Guru Rajesh Kumar and double your salary in just one year.

Get Started Now!

Basic Query in Laravel PHP Framework Advance

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

$dogs = Package::where('operator_email','dharmendra.cotocus@gmail.com')
->skip(4)->take(PHP_INT_MAX)->get();
)
return $dogs;

Query 14=>Get single data which trip is recently added by Tour Operator

$dog = Package::where('operator_email','dharmendra.cotocus@gmail.com'
->latest();
$dogs=$dog->first();

Query 15=>Get single data which trip is recently added by Tour Operator and email is Dharmendra.cotocus@gmail.com

$dog = Package::where('operator_email','dharmendra.cotocus@gmail.com'
->latest();
$dogs=$dog->first();

Query 16=>Get trip detail, image detail iternary detail wich following details

  1. Publish trip and email is ajay.cotocus@gmail.com
  2. Publish trip and email is dharmendra.cotocus@gmail.com
  3. Publish trip and email is vijay.cotocus@gmail.com
$dog = DB::table('packages')
->leftJoin('addimages','packages.TripTitle', '=', 'addimages.trips')
->leftJoin('iternaries','packages.TripTitle', '=', 'iternaries.trips')
->where('packages.publish','1')->
orwhere('packages.operator_email','ajay.cotocus@gmail.com')-> orwhere('packages.operator_email','vijay.cotocus@gmail.com')-> orwhere('packages.operator_email','dharmendra.cotocus@gmail.com')->
get();

Query 16=>Get trip details image  detail  iternary detail with following detail

  1. The country is india and email dharmendra.cotocus@gmail.com
  2.   The country is malysia and email ajay.cotocus@gmail.com
  3.   The country is india and email vijay.cotocus@gmail.com
$dog = DB::table('packages')
->leftJoin('addimages','packages.TripTitle', '=', 'addimages.trips')
->leftJoin('iternaries','packages.TripTitle', '=', 'iternaries.trips')
->where('slug','India')
->orwhere('packages.operator_email', 'dharmendra.cotocus@gmail.com')
->where('slug','Malaysia')
->orwhere('packages.operator_email','ajay.cotocus@gmail.com')->
->where('slug','India')
orwhere('packages.operator_email','vijay.cotocus@gmail.com')->
get();

Related Posts

Subscribe
Notify of
guest


0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x
Artificial Intelligence