laravel insertGetId code example
Example 1: laravel find query
$flight = App\Models\Flight::find(1);
$flight = App\Models\Flight::where('active', 1)->first();
$flight = App\Models\Flight::firstWhere('active', 1);
Example 2: insertgetid laravel 8
public function index()
{
$id = User::insertGetId(
['email' => '[email protected]','name' => 'john']
);
}
Example 3: insertgetid laravel 8
public function index()
{
$id = DB::table('users')->insertGetId(
['email' => '[email protected]','name' => 'john']
);
}
Example 4: laravel find query
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Flight extends Model
{
protected $primaryKey = 'flight_id';
}