sql >> Databáze >  >> RDS >> Mysql

Laravel 5 Vytvoření nového záznamu, který patří ke 3 dalším tabulkám

Nechápu, proč to dělat tak složitě?

zkuste toto:

Řešení 1

$User = User::find(Auth::id()); 
if(!$User) {
    return 'no user';
}

$Region = Region::find($request->input('region_id'));
if(!$Region) {
    return 'no region';
}

$locationData = $request->only('street_address', 'city', 'province', 'country', 'postal_code');
$Location = Location::firstOrCreate($locationData);

$rentalData = [
    'user_id' => $User->id, 
    'region_id' => $Region->id, 
    'location_id' => $Location->id
];
$Rental = Rental::firstOrCreate($rentalData);

Řešení 2

// ->remember() for caching request to prevent many queries, for faster result use apc cache in config files, no need to use memcache when You're using 1 app server

if(!User::where('id', '=', Auth::id())->remember(1440)->exists()) {
    return 'no user';
}

if(!Region::where('id', '=', $request->input('region_id'))->remember(1440)->exists()) {
    return 'no user';
}

$locationData = $request->only('street_address', 'city', 'province', 'country', 'postal_code');
$Location = Location::firstOrCreate($locationData);

$rentalData = [
    'user_id' => $User->id, 
    'region_id' => $Region->id, 
    'location_id' => $Location->id
];
$Rental = Rental::firstOrCreate($rentalData);



  1. vyberte * ze dvou tabulek s různým počtem sloupců

  2. Jak zabránit tomu, aby PDO interpretovalo otazník jako zástupný symbol?

  3. Oracle DBA Mentor

  4. Správa uživatelských účtů, role, oprávnění, autentizace PHP a MySQL - 2. část