Search
 
SCRIPT & CODE EXAMPLE
 

PHP

laravel elequent query

Model::where(function ($query) {
    $query->where('a', '=', 1)
          ->orWhere('b', '=', 1);
})->where(function ($query) {
    $query->where('c', '=', 1)
          ->orWhere('d', '=', 1);
});
Comment

Laravel when query

$query = Author::query();

$query->when(request('filter_by') == 'likes', function ($q) {
    return $q->where('likes', '>', request('likes_amount', 0));
});
$query->when(request('filter_by') == 'date', function ($q) {
    return $q->orderBy('created_at', request('ordering_rule', 'desc'));
});

$authors = $query->get();
Comment

laravel find query

// Retrieve a model by its primary key...
$flight = AppModelsFlight::find(1);

// Retrieve the first model matching the query constraints...
$flight = AppModelsFlight::where('active', 1)->first();

// Shorthand for retrieving the first model matching the query constraints...
$flight = AppModelsFlight::firstWhere('active', 1);
Comment

laravel find query

php artisan make:model Flight --migration

php artisan make:model Flight -m
Comment

laravel find query

return Destination::orderByDesc(
    Flight::select('arrived_at')
        ->whereColumn('destination_id', 'destinations.id')
        ->orderBy('arrived_at', 'desc')
        ->limit(1)
)->get();
Comment

laravel find query

<?php

namespace AppModels;

use IlluminateDatabaseEloquentModel;

class Flight extends Model
{
    /**
     * The primary key associated with the table.
     *
     * @var string
     */
    protected $primaryKey = 'flight_id';
}
Comment

laravel find query

foreach (Flight::where('foo', 'bar')->cursor() as $flight) {
    //
}
Comment

laravel query when

$users = DB::table('users')
                ->when($role, function ($query, $role) {
                    $query->where('role_id', $role);
                })
                ->get();
Comment

LARAVEL QUERY

<?php

Route::get('games', function () {
    
    $games = DB::table('games')->get();
    
    return view('games', ['games' => $games]);
});
Comment

laravel find query

$model = AppModelsFlight::where('legs', '>', 100)->firstOr(function () {
        // ...
});
Comment

How to write this query in Laravel Eloquent

Visitor::select('country')
     ->withCount('id')
     ->groupBy('country')
     ->latest()
     ->get()
  
  //or
  
  Visitor::query()->groupBy('country')->orderByDesc('count')->select('country' ,DB::raw('COUNT(1) as count'))->get()
Comment

laravel find query

<?php

$flights = AppModelsFlight::all();

foreach ($flights as $flight) {
    echo $flight->name;
}
Comment

laravel find query

<?php

namespace AppModels;

use IlluminateDatabaseEloquentModel;

class Flight extends Model
{
    /**
     * The connection name for the model.
     *
     * @var string
     */
    protected $connection = 'connection-name';
}
Comment

laravel find query

foreach ($flights as $flight) {
    echo $flight->name;
}
Comment

Laravel query

//select specified colomns from all users
Employee::get(['name','email','title']);
Comment

laravel find query

use AppModelsDestination;
use AppModelsFlight;

return Destination::addSelect(['last_flight' => Flight::select('name')
    ->whereColumn('destination_id', 'destinations.id')
    ->orderBy('arrived_at', 'desc')
    ->limit(1)
])->get();
Comment

PREVIOUS NEXT
Code Example
Php :: delete and return response and nocontent laravel 
Php :: laravel db drop table 
Php :: laravel mysql specified key was too long 
Php :: add-basic-controller-imports 
Php :: laravel except method 
Php :: check the request type in laravel 
Php :: curl json post 
Php :: wc create new category 
Php :: return with success message laravel 
Php :: multi theme laravel 
Php :: laravel permissions 
Php :: how to set up the laravel ssh keygen 
Php :: codeigniter 3 or where in 
Php :: php split string 
Php :: protected gaurded in laravel 
Php :: wordpress enqueue js 
Php :: Delete a single record in laravel 5 
Php :: get redirect url for laravel socialite with api 
Php :: laravel has many 
Php :: jquery greater than or equal to 
Php :: wp rest api acf fields 
Php :: php http method 
Php :: force https redirect php s 
Php :: Cambiar la imagen por defecto en producto WooCommerce 
Php :: php convert array to json 
Php :: laravel exclude field 
Php :: laravel s3 download file 
Php :: update cart subtotal woocommerce 
Php :: how to use attempt in laravel 
Php :: laravel copy 
ADD CONTENT
Topic
Content
Source link
Name
7+4 =