Laravel eloquent

Model: class Flight extends Model { protected $table='my_flights'; } Controller: use App\Models\Flight; $flights = Flight::where('active', 1) ->orderBy('name') ->take(10) ->get();          

0 Comments

Laravel checkout page with signup account

Checkout.blade.php <head> <title>Checkout</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script> </head> <br/> <?php $service_orders_details = DB::table('service_orders')->where('order_id', $order_id)->get(); foreach($service_orders_details as $t_details){ $service_template_id = $t_details->service_template_id; $service_plan_id…

0 Comments

Post loading on page scroll

A. View (HTML): <div class="container mt-5" style="max-width: 550px"> <div id="data-wrapper"> <!-- Results --> </div> <!-- Data Loader --> <div class="auto-load text-center"> <svg version="1.1" id="L9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" height="60" viewBox="0…

0 Comments

Laravel pagination

Controller: function car_details(Request $req, $id){ $data = DB::table('car_comparision')->paginate(10); return view('admin/carcomparision.all_cars', ['data' => $data]); } View: <div class="container"> @foreach ($usersas$user) {{$user->name}} @endforeach </div> <div class="d-flex"> {{ $data->links() }} </div> // Directly…

0 Comments

Orderby in laravel

In this snippet, we’re using Laravel Eloquent to fetch users from their table and ordering them in descending order by their names thanks to the orderBy() method. $data = DB::table('posts')->where('post_status_for_frontend', 1)->orderBy('updated_at', 'desc')->paginate(4);

0 Comments