Browse AI Field GuideForum Podcast
All ThreadsLeaderboard
  1. Discussions

    1. Popular This Week
    2. Popular All Time
    3. Solved
    4. Unsolved
    5. No Replies Yet

codemode's avatar

Need help with SQL query - stuck since days

Hello, My question is more about a SQL query, rather than Laravel. There is a table called ´item_meta´ which has a foreign key `fk_i_item_ and a field `s_val. And a table called t_user which has the primary key pk_i_id , and a field s_phone_mobile And a table called t_item which has the primary key pk_i_id, a foreign key fk_i_user_id So, t_user has many t_item and an t_item has

codemode's avatar
codemode's avatar codemode8yrs agoGeneral
9
1
Last reply by codemode 8yrs ago
Pauliuso's avatar

How to get name and surname by foreign key and add it as new value to current query

Hi, I know that title is not very well described, here's what I'm trying to do, I have quite common eloquent call: $artworks = Artwork::orderBy("created_at", "asc")->paginate(12); artwork has id, title, year, price, and 'author_id' columns, 'author_id' is foreign_key to table with author names, surnames etc. now with above query I get info about artwork

Pauliuso's avatar
Pauliuso's avatar Pauliuso8yrs agoEloquent
6
1
Last reply by Pauliuso 8yrs ago
mjlovefl's avatar

Is there no built-in query caching in Laravel?

I saw in the docs in Laravel 4.x there was a remember() method to cache DB queries. I don't seem to be able to find it in Laravel 5.x. I have found an external packages like: https://github.com/dwightwatson/rememberable It would also be easy enough to write in some query caching using Laravel's Cache class, but I just want to make sure I am not missing anything. Is there no Cor

mjlovefl's avatar
mjlovefl's avatar mjlovefl8yrs agoLaravel
0
1
COACHTHEM's avatar

Is there a method like toSql() to see the raw sql query with the parameters mapped automatically.

I am doing test to see whether the query binding what I have written is accurate. Currently I am using toSql() method which outputs the raw sql with ? as the value supplied to conditions. But sometimes to make the test process faster I would have preferred to use a method that would return the sql string with values binding done automatically. Instead of expecting select name f

COACHTHEM's avatar
COACHTHEM's avatar ModestasV8yrs agoEloquent
2
1
Last reply by ModestasV 8yrs ago
stepassia's avatar

Insert null value with query builder

Hi, I've this query: $id = DB::table('table1')->insertGetId([ 'id' => $request->input('id'), 'idExternal' => NULL ]); The query executed is like this one: INSERT into 'table1' ('id', 'idExternal') values ('1', '') The idExternal is a foreing key so, I can't write an empty value (like '') but I need to write NULL (the column is nullable). Why the

stepassia's avatar
stepassia's avatar CosminComa...3yrs agoLaravel
10
2
Last reply by CosminComan 3yrs ago
Lars-Janssen's avatar

Why does updateGetId not exists on the query builder?

Hi, I know insertGetId(); exists on the query builder. But why is there no updateGetId();? Is there a reason for this or should I make a pull request because I need it ! :) https://laravel.com/api/5.3/Illuminate/Database/Query/Builder.html Thanks!

Lars-Janssen's avatar
Lars-Janssen's avatar Lars-Janss...8yrs agoLaravel
4
1
Last reply by Lars-Janssen 8yrs ago
jandk4014's avatar

Eloquent polymorphic return zero but query works in MySql

A difficult question to ask and even harder to find answers for. When I dump the query out to the screen and run in directly in MySql I get the desired results. However executing the code in the project produces zero models. Migrations Schema::create('part_base_parts', function (Blueprint $table) { $table->increments('id')->index('part_base_parts_id'); $table-&g

jandk4014's avatar
jandk4014's avatar jandk40148yrs agoEloquent
1
1
Last reply by jandk4014 8yrs ago
akogler's avatar

Laravel DB query builder with LEFT JOIN using an RAW expression

I would like to left join data from a many-to-many relationship. In my first attempt to solve the problem I ended up with the situation described at https://stackoverflow.com/questions/916414/how-can-a-left-outer-join-return-more-records-than-exist-in-the-left-table Now I thought that I concatenate the values from the many-to-many relationship before I do the left join, but I'

akogler's avatar
akogler's avatar akogler8yrs agoLaravel
0
1
Dickyperdian's avatar

No query results for model [App\Partais].

hello, i need help, error problems No query results for model.. https://pastebin.com/EXnvWbrj

Dickyperdian's avatar
Dickyperdian's avatar tykus8yrs agoLaravel
1
1
Last reply by tykus 8yrs ago
ownmaster's avatar

Ensure only one single record is returned by Eloquent query

I checked Laravel collection methods and can't understand - is there a method for Eloquent query to ensure that exactly 1 record is returned - not 0 and not more than 1? Something like singleOrFail(). As an example, in Entity Framework there is First() which works like Laravel's firstOrFail() and there is also Single(). Or, is it not implemented (yet)?

ownmaster's avatar
ownmaster's avatar jjudge1yr agoEloquent
6
22
Last reply by jjudge 1yr ago
Torch's avatar

Need help with simple query builder code

Maybe it's late and I am missing something obvious, but I am very confused. Can someone explain to me why this code $products = Product::where('id',15); $result = $products->get(); dd($result); return 1 (correct) result and this code $products = Product::where('id',15); $a = $products->where('id',1111); $result = $produc

Torch's avatar
Torch's avatar andreasbak...8yrs agoLaravel
7
1
Last reply by andreasbakir 8yrs ago
pascal83's avatar

On all page, i have a topmenu that needs to query the database... where should i place my Eloquent code

Hello to all, I'm creating a new website and i have a question about my top menu.... In my old website, i included a php page topmenu.php in my php template...... and in this top menu.... if user is logged, i query the database to check for new messages... or if not logged, i show register and login button.. But now... in Laravel... i create a template (main.blade.php) and i in

pascal83's avatar
pascal83's avatar pascal838yrs agoEloquent
2
1
Last reply by pascal83 8yrs ago
devamit2018's avatar

query builder

select DISTINCT id,file_no,registration_date_ad,registration_date_bs from building this is my query. i have databse with table building.i want to get the specified fields data in view page in table form. please help me with controller and blade.php

devamit2018's avatar
devamit2018's avatar muhammadja...8yrs agoLaravel
4
1
Last reply by muhammadjaved 8yrs ago
p0t4t0's avatar

When creating relations with the Laravel ORM, what is the raw MySQL query behind it?

For example, if I have a Posts and a Comments model and "bind" (not sure if it's the proper term) comments to a post with... class Post { public function comments() { return $this->hasMany('App\Comment'); } } What is the raw MySQL query behind that? I'm kind of weak on MySQL so I just want to know to learn more about it and how should I struc

p0t4t0's avatar
p0t4t0's avatar Snapey8yrs agoLaravel
4
1
Last reply by Snapey 8yrs ago
truetaurus's avatar

Database Query Builder for Objects.

Using database query builder (https://laravel.com/docs/5.5/queries) get() returns me a collection of StdClass. I am using a postgresql database. Is it possible somehow to create objects from my tables and then return a collection of objects? i.e. convert the stdClass to the specific Object representing the table? Maybe a different library? I would rather not create my own class

truetaurus's avatar
truetaurus's avatar martinbean8yrs agoLaravel
1
1
Last reply by martinbean 8yrs ago
pilat's avatar

Search in JSON column does not work with Query Builder and Eloquent Model (but works with raw query)

Hi, in Laravel 5.3, I'm trying to use that short syntax for the JSON columns: $allLeadsEloquent = LeadsCache::where('json->linked_company_id', $companyId) ->get(); The result: empty collection. Note: the same result is with Query Builder (DB('table_name')). Now. I open Debugbar and grab the "Raw query" produced by this code and run this query in the Sequel

pilat's avatar
pilat's avatar pilat8yrs agoEloquent
1
1
Last reply by pilat 8yrs ago
p0t4t0's avatar

Need clarification on query strings with Laravel

How should one handle query strings with Laravel? Is this fine? If it is then are there better or more ways to do it? What instances is it better to use it over "pretty" URLs? Route::post('/comment?pid={post}', 'CommentController@store');

p0t4t0's avatar
p0t4t0's avatar jlrdw8yrs agoLaravel
5
1
Last reply by jlrdw 8yrs ago
Tomi's avatar

Is there a way to extend the Query Builder?

I would like to extend the Query Builder so i have my own raw Query builder class, that i can filter down. I tryd to do it like this: namespace App\Query; use Illuminate\Database\ConnectionInterface; use Illuminate\Database\Query\Builder; use Illuminate\Database\Query\Grammars\Grammar; use Illuminate\Database\Query\Processors\Processor; class Contract extends Builder { publi

Tomi's avatar
Tomi's avatar martinbean8yrs agoLaravel
5
3
Last reply by martinbean 8yrs ago
itinigam's avatar

Group by and order by in the same query

I need to fetch the results from a table using group by and order by in the same query. Basically I need to fetch the latest transaction from the transactions table based on two columns i.e. latest row based on unique combination of two columns. I need to fetch the latest row grouped by two columns. Eg: I have a table transactions which contains the transactions of the quotatio

itinigam's avatar
itinigam's avatar itinigam8yrs agoEloquent
0
1
chireen's avatar

LAravel SQL Optimization (Query, cache, etc)

Hi guys, I'm working on a project with a lot of data. I'm having a hard time getting a query result within 5 seconds. One table(warranty) has almost 4,000,000 rows. One example function I'm doing is a keyup function for product search function for the logged in user : Pass input data via ajax get request. Run this query: ItemWarranty::where('user_id', request()->user()->

chireen's avatar
chireen's avatar chireen8yrs agoLaravel
7
1
Last reply by chireen 8yrs ago
pasiutlige's avatar

Converting SQL query to an Eloquent query builder.

Hello, I am pretty new to Laravel, and can't find a solution to my problem. I've made a SQL query, $likes = DB::select(" SELECT count(likes.post_id) AS AllCount, posts.id, posts.image FROM posts, likes WHERE likes.post_id = posts.id GROUP BY likes.post_id, posts.id, posts.image ORDER BY AllC

pasiutlige's avatar
pasiutlige's avatar pasiutlige8yrs agoLaravel
3
1
Last reply by pasiutlige 8yrs ago
paklic9's avatar

Undefined variable in function with query

Hi, I have problem with my function, error is: "Undefined variable: filtry". I know why, the variable $filtry have to be defined in query function (like variable $j is), then it is working. But I cannot have this variable static, because variable $filtry will be always diffrent, so I need set it before function, then call it in function. Is it possible? Thanks in adva

paklic9's avatar
paklic9's avatar paklic98yrs agoGeneral
2
1
Last reply by paklic9 8yrs ago
codemode's avatar

Help with SQL query

Hello, I have a fairly nasty SQL query, which i'm not able to execute. So, i need to extract 2 fields for selected dates... and then the same 2 fields for just the last 6 months. I decided not to use Eloquent for the sake of ease. Given the circumstances, i need to fit all this into ONE sql query. Following is what i have right now : select customerAccount, count(id) a

codemode's avatar
codemode's avatar modi7886888yrs agoLaravel
2
1
Last reply by modi788688 8yrs ago
deja's avatar

Trying to use query builder to constrain by non-unique values in a column

This is my query so far: $units = DB::table('units') ->join('locations', 'locations.id', '=', 'units.location_id') ->join('castles', 'castles.id', '=', 'units.castle_id') ->join('unit_types', 'unit_types.id', '=', 'units.unit_type_id') ->select('units.location_id', 'units.previous_location_id', 'units.i

deja's avatar
deja's avatar deja8yrs agoLumen
11
1
Last reply by deja 8yrs ago
deja's avatar

Adding unique constraints to a query

I have this query: $units = DB::table('units') ->join('locations', 'locations.id', '=', 'units.location_id') ->join('castles', 'castles.id', '=', 'units.castle_id') ->join('unit_types', 'unit_types.id', '=', 'units.unit_type_id') ->select('units.location_id', 'units.previous_location_id', 'units.id as u

deja's avatar
deja's avatar deja8yrs agoLaravel
16
1
Last reply by deja 8yrs ago
aperezmi's avatar

Help using join() with previous query

Hello: I have doubts about using the join() function of a Model when a table is the result of a previous query. I have a previous query which is in fact the result of joining two tables $query = Model1::join('table2','table1.column1','=','table2.column1'); What I want to do is joining this query with a table represented by an Eloquent model, something like: ModelA::join($quer

aperezmi's avatar
aperezmi's avatar getupkid8yrs agoEloquent
1
1
Last reply by getupkid 8yrs ago
V9द's avatar

Create Query with Eloquent

I want to use laravel eloquent to implement the below query. Please help SELECT COUNT(`category_id`) as categorycount,`category_id`,`product_id` FROM `productcategories` GROUP BY `category_id` ORDER BY categorycount DESC Model Name is Productcategory

V9द's avatar
V9द's avatar vinodsharm...8yrs agoEloquent
3
1
Last reply by vinodsharma 8yrs ago
killstreet's avatar

Not sure what kind of eloquent query to make with inbetween table

So I got the following table structure: profiles id name lastname profiles_has_specialties profile_id specialty_id level specialties id name Now I thought I would need a query like: //Inside the controller dd(Profile::with('specialties')); //The Profile model public function specialties() { return $this->hasManyThrough(Profile_has_specialty::class, Spe

killstreet's avatar
killstreet's avatar killstreet8yrs agoEloquent
4
1
Last reply by killstreet 8yrs ago
pmieleszkiewicz's avatar

Query with orWhere returns invalid elements

Hello. I have a 'Friends' table in my database and it stores ids of 2 users and accepted field ( if user confirmed invitation ). Now I want to remove specific friendship and my query is: Friend::where([ 'user_id' => $friend_id, 'friend_id' => Auth::id(), 'accepted' => 1, ])->orWhere([ 'user_id' => Auth::id()

pmieleszkiewicz's avatar
pmieleszkiewicz's avatar pm958yrs agoEloquent
3
1
Last reply by pm95 8yrs ago
mecca6's avatar

Laravel newbie - Haversine query - SelectRaw inside a Join closure

Hi, we are trying to implement a haversine query using Laravels' join closure but it doesn't want to work. We created a dummy method to count records based on the passed data (lat, lng and radius) which worked fine. We just can't seem to get it going inside the join closure... Dummy Method public function dummyTestOne($request){ $listings = new BusinessListingsModel();

mecca6's avatar
mecca6's avatar mecca68yrs agoLaravel
1
1
Last reply by mecca6 8yrs ago
timgavin's avatar

Eloquent query showing wrong result

I'm at a loss here. I have different statuses on a post: published, draft, etc. My query should only select published posts; on my development server it's working correctly, yet on my production server it's showing posts with a status of draft and I can't figure out why. $posts = Post::latest('published_at') ->whereHas('user', function ($query) { $query->where

timgavin's avatar
timgavin's avatar crnkovic8yrs agoEloquent
2
1
Last reply by crnkovic 8yrs ago
dillscher's avatar

How to prevent ambigous on Eloquent based query?

Hi, I'm trying to figure out how to extend a builder query to join with another table and by this other table. Unfortunately both tables "articles" and "users" have a column named "lang", which results in an ambigous error. $articles = Article::published() ->lang() ->with('genre')

dillscher's avatar
dillscher's avatar dillscher2yrs agoEloquent
2
1
Last reply by dillscher 2yrs ago
esperanza's avatar

update query with two conditions

I want a query with two conditions to update but it should be an and conditions. my code is below. it does not work. DB::table('attendence') ->where([['name',$name] ,['type',null] ]) ->update([ 'checkedout' => $this->data->checkedout, 'type'=> $this->data->type, ]);

esperanza's avatar
esperanza's avatar ezperansa8yrs agoLaravel
2
1
Last reply by ezperansa 8yrs ago
adnan483's avatar

Query builder

How to make this query with QueryBuilder or what? SELECT duznici_2018.*,sum(rate_2018.rata) as ukupno FROM duznici_2018 LEFT JOIN rate_2018 ON duznici_2018.duznikID=rate_2018.duznikID GROUP BY duznikID DESC I'm stuck on how to add SUM: $sumrate = DB::table('duznicis')->leftJoin('rates', 'duznicis.kupac_id', '=', 'rates.duznik_id')->get();

adnan483's avatar
adnan483's avatar Yama8yrs agoLaravel
2
1
Last reply by Yama 8yrs ago
nizam0786's avatar

Query is not working even though I have one almost identical working.

I am trying to build a communication page where emails can be filtered etc... I created the page and emails can be successfully filtered however, I wanted users to be able to save shortcuts to save them time filtering the same again and again. So I decided to create a comm shortcut object which stored each value of the filter and stores the array as a string by serialising it.

nizam0786's avatar
nizam0786's avatar nizam07868yrs agoEloquent
1
1
Last reply by nizam0786 8yrs ago
KonScyence's avatar

MySQL Query

Hi, I would like to put a condition in a query, but I do some things wrong, what is it? $id = 1; $groups = DB::table('table_example') if($id!='0'){ ->where('id', '=', $id) } ->limit(30) ->get(); Best regards

KonScyence's avatar
KonScyence's avatar KonScyence8yrs agoLaravel
2
1
Last reply by KonScyence 8yrs ago
akogler's avatar

DB Query builder reports column not found, but refers to a value instead of a column title

I have the table: CREATE TABLE `project_user` ( `project_id` int(10) unsigned NOT NULL, `user_id` int(10) unsigned NOT NULL, `role_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, KEY `project_user_project_id_index` (`project_id`), KEY `project_user_user_id_index` (`user_id`), CONSTRAINT `project_user_proj

akogler's avatar
akogler's avatar Shawdow8yrs agoLaravel
2
1
Last reply by Shawdow 8yrs ago
howard_hsiao's avatar

Query outside database with 'between condition

I'm confused at Laravel's query DB. Here is my code: collect(DB::connection('2ndDB')->select('select avgvalue, logtime from 2ndDB.mytable where logtime =?',array('14:38'))); It does work on and return the right value. However, once I change the SQL statement with 'between' condition, down here: collect(DB::connection('2ndDB')->select('select avgvalue, logtime from 2ndDB.m

howard_hsiao's avatar
howard_hsiao's avatar howard_hsi...8yrs agoEloquent
2
1
Last reply by howard_hsiao 8yrs ago
ahmadissa's avatar

Active results like Eloquent "with" in query builder

Hello, I'm trying to get database records as same as Eloquent "with" so for example my query builder query return the following data $comments = \DB::table('comments as T1') ->select('T1.product_id','rating') ->where('T1.shop_name', '=', "$shop")

ahmadissa's avatar
ahmadissa's avatar sbcman748yrs agoLaravel
4
1
Last reply by sbcman74 8yrs ago
ReakyMark's avatar

how to make relationship in Eloquent with this Query Builder

product ----------------------------------------------------- product_id | product_name | ... | category_id 1 | product_1 | 1 2 | product_2 | 2 category ----------------------------------------------------- category_id | category_name 1 | type_1 2 | type_2 my expect result

ReakyMark's avatar
ReakyMark's avatar shez19838yrs agoEloquent
3
1
Last reply by shez1983 8yrs ago
Vic-Gutt's avatar

Making a Laravel 5.4 query on a JSON field containing a JSON array

Hi everyone, i'm trying to query a JSON field containing an array of values. For exemple sake we'll name the table "User" and the field "Friends". Here's how the Friends field looks like : [{ "id": 1, "img": "img-1.jpg", "name": "Name 1" }, { "id": 2, "img": "img-2

Vic-Gutt's avatar
Vic-Gutt's avatar Shahrukh47yrs agoEloquent
9
1
Last reply by Shahrukh4 7yrs ago
anderking's avatar

How can I convert a query where it brings a collection of objects to a find or findOrFail?

How can I convert a query where a collection of objects brings me and therefore if I want to access an attribute of that object I have to cycle through it, unlike a find that brings me a different structure and I can directly access an attribute without need of the cycle, If I know that my query will bring me just one row how can I convert the structure where to find to be able

anderking's avatar
anderking's avatar tykus8yrs agoEloquent
1
1
Last reply by tykus 8yrs ago
KonScyence's avatar

Change SQL query of laravel Auth with ID

Hello, I would like to use this: Auth::loginUsingId($user['uid'], true); The problem is that in the database, the column of the id is not id, but uid. How do I have to change the SQL query? Error: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'id' in 'where clause' (SQL: select * fromtkl_userswhereid= 1 limit 1) Thanks

KonScyence's avatar
KonScyence's avatar KonScyence8yrs agoLaravel
2
1
Last reply by KonScyence 8yrs ago
Ixalmida's avatar

Query builder generates valid query but throws error in code

I have an SQL query that queries for all unverified company owners to send out a reminder email on unsubmitted applications. The following is my query builder code: $unverified = DB::table('OnlineApp.applications AS app') ->select('own.name', 'own.email', 'usr.id', DB::raw('MAX(tok.id) as tokenId'), 'tok.token') ->join('OnlineApp.applicatio

Ixalmida's avatar
Ixalmida's avatar bobbybouwm...8yrs agoEloquent
1
1
Last reply by bobbybouwmann 8yrs ago
diadal's avatar

No query results for model

Am getting this error Any idea how to fix this? php artisan ScheduleMsg:send In Builder.php line 329: No query results for model [App\Updatacc] My Command class <?php namespace App\Console\Commands; use Illuminate\Console\Command; use Carbon\Carbon; use App\Updatacc; use Ap

diadal's avatar
diadal's avatar diadal8yrs agoLaravel
5
1
Last reply by diadal 8yrs ago
askshinde's avatar

RAW Query Throws Incomplete Data

I build a query using foreach (dynamic), when I pass that query using select(DB::raw(QUERY))->toSql() the select query it returns work perfectly fine in phpmyadmin mysql query but when I use get() instead of toSql() I do not get complete data

askshinde's avatar
askshinde's avatar askshinde8yrs agoLaravel
4
1
Last reply by askshinde 8yrs ago
luddinus's avatar

Issue when the SQL query is slower than multiple requests

Hi. I have a page where an user can upload some photos. Imagine that the limit is ten photos per user. I use dropzone to upload multiple photos, and it runs one request per photo upload. The problem is that when I check the number of the photos inthe request, when the next request "starts", sometimes the query has not finished, so the user "sometimes" can up

luddinus's avatar
luddinus's avatar luddinus8yrs agoGeneral
4
1
Last reply by luddinus 8yrs ago
abhigarg's avatar

Laravel | Conditional search query based on user role / status

Hi, team: I have a scenario where user records can be pulled up based on requester's "admin" role. Short of writing an if/else query such as below, is there an elegant way to deal with this? public function search(Request $request) { $this->validateSearchRequest($request); if (Auth::user()->isSuperAdmin()) { return User::where('fname', 'like', '%' .

abhigarg's avatar
abhigarg's avatar bobbybouwm...8yrs agoCode Review
7
1
Last reply by bobbybouwmann 8yrs ago
Loach's avatar

Converting SQL Query into Eloqeunt

I have the following sql query I need to convert to eloquent. I have the "lat" and "lng" fields in the user table. Basically I need to select all users within the 25 mile radius. SELECT id, ( 3959 * acos( cos( radians(37) ) * cos( radians( lat ) ) * cos( radians( lng ) - radians(-122) ) + sin( radians(37) ) * sin( radians( lat ) ) ) ) AS distance FROM marker

Loach's avatar
Loach's avatar Loach8yrs agoEloquent
33
1
Last reply by Loach 8yrs ago
gbdematos's avatar

Trouble in custom query

Hi! I'm having some trouble creating a query in laravel, if anyone has any tips I'd appreciate! I have the following tables: "Item", "User", "Category", "ItemUser", and "CategoryItem". An User can have multiple Items and vice-versa (belongs to Many), that's why I have the ItemUser pivot table. An User can create categories (Has

gbdematos's avatar
gbdematos's avatar JoaoPedroA...8yrs agoEloquent
1
1
Last reply by JoaoPedroAS51 8yrs ago

Want us to email you occasionally with Laracasts news?

Nine out of ten doctors recommend Laracasts over competing brands. Come inside, see for yourself, and massively level up your development skills in the process.

Learn
BrowseSeriesCreatorSeriesLaravel PathLarabitsPlayground
Discuss
ForumPodcastSupport
Extras
Gift CertificatesApparelFAQiOS AppTerms
Social
X(Twitter)TikTokYoutube

© Laracasts 2026. All rights reserved. Yes, all of them. That means you, Todd.

Proudly hosted with Laravel Forge and DigitalOcean.

Want us to email you occasionally with Laracasts news?

Nine out of ten doctors recommend Laracasts over competing brands. Come inside, see for yourself, and massively level up your development skills in the process.

Learn
BrowseSeriesCreatorSeriesLaravel PathLarabitsPlayground
Discuss
ForumPodcastSupport
Extras
Gift CertificatesApparelFAQiOS AppTerms
Social
X(Twitter)TikTokYoutube

© Laracasts 2026. All rights reserved. Yes, all of them. That means you, Todd.

Proudly hosted with Laravel Forge and DigitalOcean.