Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
$offers = Offer::where(function($query) { $query->where('is_active', true)->orWhere('is_archive', true); })->where('category_id',$activeCat->id)->get();
$article->with('comments.user')->...
Route::group(['prefix' => 'user'], function () { Auth::routes(); });
$items = Items::with(['order' => function($q){ $q->with('invoice'); }])->get();
$lastId = Post::orderBy('id', 'DESC')->first()->id; $post = Post::create([ 'name' => 'name' . $lastId+1, 'text' => 'text' ]);
{{ csrf_field() }}
<meta name="csrf-token" content="{{ csrf_token() }}">
$table->foreign('author_id')->references('id')->on('users');