Member Since 11 Months Ago
2,620 experience to go until the next level!
In case you were wondering, you earn Laracasts experience when you:
Earned once you have completed your first Laracasts lesson.
Earned once you have earned your first 1000 experience points.
Earned when you have been with Laracasts for 1 year.
Earned when you have been with Laracasts for 2 years.
Earned when you have been with Laracasts for 3 years.
Earned when you have been with Laracasts for 4 years.
Earned when you have been with Laracasts for 5 years.
Earned when at least one Laracasts series has been fully completed.
Earned after your first post on the Laracasts forum.
Earned once 100 Laracasts lessons have been completed.
Earned once you receive your first "Best Reply" award on the Laracasts forum.
Earned if you are a paying Laracasts subscriber.
Earned if you have a lifetime subscription to Laracasts.
Earned if you share a link to Laracasts on social media. Please email [email protected] with your username and post URL to be awarded this badge.
Earned once you have achieved 500 forum replies.
Earned once your experience points passes 100,000.
Earned once your experience points hits 10,000.
Earned once 1000 Laracasts lessons have been completed.
Earned once your "Best Reply" award count is 100 or more.
Earned once your experience points passes 1 million.
Earned once your experience points ranks in the top 50 of all Laracasts users.
MohammedAttya started a new conversation Disconnect And Reconnect Laravel Database Connection
Hello,
my app run about 2 min per execution most of them on calling outside apis called in one place without talking to db.
I want to close the database connection and reOpen it after finish apis calls
I use \DB::disconnect('mysql')
and \DB::connection('mysql')
but it throw exception after this while begin a transaction getPDO() return null
MohammedAttya left a reply on Get Ids For Insert Bulk
@Cronix this is the function that laravel using for insertGetId() and it is returning last inserted ID for current session
I had issue with getting the correct IDs I found that MySQL returning the first ID of bulk insetred rows (not the last one as I expected)
MohammedAttya left a reply on Get Ids For Insert Bulk
I solved this problem using
app('db')->getPdo()->lastInsertId()
after insert so I got the last inserted id
MohammedAttya started a new conversation Get Ids For Insert Bulk
I want to insert bulk on database and get rows id (first one, last one or all rows)
I tried insertGetId but it took only one row per time
Is there any way to get the query object of insert or run anonymous function with it to run `$id = $query->getConnection()->getPdo()->lastInsertId($sequence);
` on it ?
MohammedAttya left a reply on PHP Advanced Topics
@klick I updated the thread so my question will be clear
MohammedAttya started a new conversation PHP Advanced Topics
Hello, I want to upgrade my skills in PHP. So I want to learn the advanced topics in PHP e.g: iterators, lambdas, design patterns .. etc