“Ларавел, когда” Ответ

Laravel DB INSERR

DB::table('users')->insert([
    'email' => 'kayla@example.com',
    'votes' => 0
]);
Helpful Hoopoe

Ларавел присоединиться

Inner Join 	: ->join('contacts', 'users.id', '=', 'contacts.user_id')
Left Join 	: ->leftJoin('posts', 'users.id', '=', 'posts.user_id')
Right Join 	: ->rightJoin('posts', 'users.id', '=', 'posts.user_id')
Cross Join 	: ->crossJoin('colors')

Advance Queries : 
----------------- 
 		->join('contacts', function ($join) {
            $join->on('users.id', '=', 'contacts.user_id')
                 ->where('contacts.user_id', '>', 5);
        })
  
Lokesh003Coding

Обновление Laravel от запроса

$affected = DB::table('users')
              ->where('id', 1)
              ->update(['votes' => 1]);
Alberto Peripolli

Ларавел не в запросе

DB::table(..)->select(..)->whereNotIn('book_price', [100,200])->get();
Lokesh003

Ларавел, когда

/* you may only want to apply a where statement if a given input value
is present on the incoming request.
*/
$role = $request->input('role');

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

Присоединяйтесь к красноречивому Ларавелу

 $customer = DB::table('customers')
                ->join('shops', 'customers.shop_id', '=', 'shops.shop_id')
                ->where('customer_contact', $contact_no)
                ->get();
Old-fashioned Otter

Ответы похожие на “Ларавел, когда”

Вопросы похожие на “Ларавел, когда”

Больше похожих ответов на “Ларавел, когда” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования