Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Laravel 5 Tworzenie nowego rekordu, który należy do 3 innych tabel

Nie rozumiem, dlaczego to tak skomplikować?

spróbuj tego:

Rozwiązanie 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);

Rozwiązanie 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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Zastępowanie \r\n (znaków nowego wiersza) po uruchomieniu json_encode

  2. Składnik czasu paska MySQL od datetime

  3. Błąd podczas przesyłania bazy danych z MySql do Postgresa przy użyciu mysql2pgsql

  4. Dlaczego MySQL nie używa indeksu do lepszego porównania?

  5. Jak dodać domyślne ograniczenie w MySQL?