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

EdRob's avatar

Variable session timeout based on user level

Is there a way in Laravel to vary the session timeout according to the user type? For example, we might want customers on an e-commerce site to timeout after 20 minutes, but administrators would get a longer timeout to protect them against being logged out halfway through any lengthy processes in the admin. I know Laravel has the lifetime variable in config/session.php, but tha

EdRob's avatar
EdRob's avatar https4438yrs agoLaravel
1
1
Last reply by https443 8yrs ago
campo's avatar

Custom Collection Refactoring Question

Hey everyone, Looking for an opinion. I've been working on a shipment project where I need to post tracking numbers to our eCommerce site. The only issue is that shipments come from 3 different sources completely (API, DB2 (ugh!), flat file). I've been refactoring a good bit of the code to try and transform all the shipments to a common format. Also to a way that I could typehi

campo's avatar
campo's avatar Francesco...9yrs agoLaravel
1
1
Last reply by Francesco Zaffaroni 9yrs ago
ssuhat's avatar

Need advice for database table

Hi, Right now I'm building an ecommerce site and there will be statistics using Laravel and MariaDB. My question is: Right now I have Transactions and Transaction Summary table. Every time transaction is made I will save to those tables. Do I really need Transaction Summary tables to increase my speed when load statistics page (I don't need to SUM all the transactions amount)?

ssuhat's avatar
ssuhat's avatar AkiyamaSma...9yrs agoTips
5
1
Last reply by AkiyamaSmart 9yrs ago
puzbie's avatar

Odd domain redirecting to my site.

This is an odd one. I rent a server which I host a number of domains on 5 ip addresses. Plesk is used to manage the servers. On one IP address, I had specified a default site. Somebody else had registered a domain, which pointed to this IP address. Because of the default site setting, if you surfed to externalsite.co.uk you would get my default site. I have since set it up so t

puzbie's avatar
puzbie's avatar puzbie9yrs agoGeneral
11
1
Last reply by puzbie 9yrs ago
afujita's avatar

How to retrieve records filtered by selected value

This is commonly used in e-commerce sites, like serarching products based on some category. Well, what I want to retrieve is, for example, all products that belongs to books, if I select books. I think I have to insert some if statements in Controller in order for each submit action, but not sure. Here is what I have up to now... View {!! Form::open(['method' => 'GET', 'rout

afujita's avatar
afujita's avatar afujita9yrs agoEloquent
6
1
Last reply by afujita 9yrs ago
jeffcj's avatar

New project question. Laravel + ??JS

Hello all! I'm coming to Laravel from Yii/Yii2 (mostly). I've dabbled in a few PHP frameworks over the years. The same could be said for JavaScript--Angular2, Ember, etc (very limited experience with those). I'm starting a new project and I find myself in an "analysis paralysis" scenario. I know I want to learn/utilize Laravel for this project. I also want to have a g

jeffcj's avatar
jeffcj's avatar Aferz299yrs agoGeneral
3
1
Last reply by Aferz29 9yrs ago
cshelswell's avatar

HTML Build of Site - Trying to improve page load speeds

I'm not quite sure where to put this but what I'm thinking about doing or trying to do is do a HTML build of my site at the end of the day so pages load quick without any dynamic php. A good example would be a huge site bodybuilding.com http://www.bodybuilding.com/store/cobra-labs.html?searchTerm=cobra&_requestid=487911 I'm assuming just rendering HTML has a huge speed impa

cshelswell's avatar
cshelswell's avatar cshelswell9yrs agoLaravel
5
1
Last reply by cshelswell 9yrs ago
jmagaro88's avatar

RDS vs Local Database Speed

I am going back and forth between using an Amazon RDS database and just using the local db on my EC2 instance for my Laravel 5.2 eCommerce app. I am running a db.t2.micro instance, and it doesn't appear to be maxed out by any means. I haven't driven any traffic to the site yet, but this is what it looks like with the current load of me clicking around on it to test out speed:

jmagaro88's avatar
jmagaro88's avatar jmagaro889yrs agoServers
0
1
muhammadsajjad8's avatar

Working on gloudemans shopping cart

Hey I am working on a simple eCommerce site. Its been 3 days I have stuck in an error. This is error Whoops, looks like something went wrong. 1/1 BadMethodCallException in Controller.php line 273: Method [show] does not exist. in Controller.php line 273 at Controller->__call('show', array('cart')) at StoreController->show('cart') at call_user_func_array(array(object(Store

muhammadsajjad8's avatar
muhammadsajjad8's avatar muhammadsa...9yrs agoCode Review
0
1
ma.mehralian's avatar

Laravel has-many-through with multiple intermediate tables

I am new to Laravel 5. I am trying to develop multiple-shop eCommerce platform. So the following tables created: shops: id, name, ... products: id, shop_id, ... orders: id, ... order_details: id, order_id, product_id, ... And this is the summery of my models' relationships: Shop->products: Shop hasMany Product Product->shop: Product belongsTo Shop Order->deta

ma.mehralian's avatar
ma.mehralian's avatar _Marco_5yrs agoEloquent
3
1
Last reply by _Marco_ 5yrs ago
aymanefrost's avatar

What's the best way to make Authentication (API) in this case?

Hello, I've been watching the Incremental API (which is a great serie, thank you Jeffrey!). However, Jeffrey used basic Auth to protect some of his methods. The problem is, in my case, I don't have users. I want to make an ecommerce site without authenticated users (you just pick products, fill a form and then we contact the client to process the order). But I still need to pro

aymanefrost's avatar
aymanefrost's avatar aymanefros...9yrs agoGeneral
0
1
Dewilas's avatar

How to sync orders via API?

Hello, I need to check via API, for example, 1000 ecommerce shops and sync orders of these to my DB. My first offering is cron job and artisan command. But when I foreach job for 1000 shops every minute, last shop will be after hour or something. What can I do? How to split cronjobs to the parts?

Dewilas's avatar
Dewilas's avatar Dewilas10yrs agoGeneral
2
1
Last reply by Dewilas 10yrs ago
RegularEverydayNormalGuy's avatar

When to use policies

Do you use the laravel policy feature for general business rules or just when it's about what specific users can/cannot do to specific objects? For instance, an e-commerce app should only allow refunding until 10 days after purchase. It does not matter which user is requesting the refund nor which product was purchased. Is that still considered access control logic?

RegularEverydayNormalGuy's avatar
RegularEverydayNormalGuy's avatar RegularEve...10yrs agoLaravel
0
1
meeshka's avatar

Fetching just one row from a relation

I have a PaymentTransaction and PaymentError models as part of my simple ecommerce project. Each PaymentTransaction may have one or more PaymentErrors. So, I need to fetch the last error along with PaymentTransactions and here is what I am trying. It doesn't seem to provide any results for payment errors. Is there anything wrong here? Don't see any errors though. PaymentTransac

meeshka's avatar
meeshka's avatar meeshka10yrs agoEloquent
3
1
Last reply by meeshka 10yrs ago
Raimondas's avatar

Trying to get a web developer job ?

Hi, I'm learning to program websites for a long time now. And I'm wondering do I even have the most minimal opportunities to get a job ? I'm working with Laravel , I know things like API, AJAX, JQUERY, JS, MySQL, Bootstrap, PHP. I'm not studying IT I'm self-taught, currently the most adavanced project that I've created by myself alone is websites templates store, the users can

Raimondas's avatar
Raimondas's avatar jekinney10yrs agoGeneral
3
1
Last reply by jekinney 10yrs ago
canadianlover's avatar

Undefined variable $errors on login page

So I'm trying to build an e-commerce site and when I go to /auth/login in my application, I get a Undefined variable: errors. This makes no sense to me because $errors should be available in all views. I've asked this question on stackoverflow) http://stackoverflow.com/questions/37212226/error-with-auth-middleware?noredirect=1#comment61957524_37212226 but didn't get an answer o

canadianlover's avatar
canadianlover's avatar abdulrehma...5yrs agoCode Review
17
1
Last reply by abdulrehmandev 5yrs ago
canadianlover's avatar

Using stripe to process Bitcoin - TokenMismatchException in VerifyCsrfToken.php line 67:

I have just installed the Stripe package for my e-commerce app, and I get this error every time I try to checkout of the site, including test mode. I have the following routes file /* |-------------------------------------------------------------------------- | Application Routes |-------------------------------------------------------------------------- | | Here is where you c

canadianlover's avatar
canadianlover's avatar zachleigh10yrs agoCode Review
3
1
Last reply by zachleigh 10yrs ago
canadianlover's avatar

Creating a subtotal() function

I have the following Model Factory /* |-------------------------------------------------------------------------- | Model Factories |-------------------------------------------------------------------------- | | Here you may define all of your model factories. Model factories give | you a convenient way to create models for testing and seeding your | database. Just tell the fa

canadianlover's avatar
canadianlover's avatar willvincen...10yrs agoCode Review
6
1
Last reply by willvincent 10yrs ago
sunscreem's avatar

Whats the equivalent of old school Globals in L5?

I'm building a basic ecommerce site and I need to remember the visitors currency preference. (Assuming there is are no user accounts) what the best was to handle this in L5? In the old days I would have just set a session variable but normal searches on here and google are leading me in wild directions.

sunscreem's avatar
sunscreem's avatar sunscreem10yrs agoLaravel
5
1
Last reply by sunscreem 10yrs ago
canadianlover's avatar

File won't upload

I am designing a e-commerce website and right now I'm working on the admin panel. I need to upload a file and when I do it fails. All I get is a redirect to the form. My databases doesn’t update either. What am I doing wrong? Controller: Item::create($request->all()); if (Input::hasFile('filename')) { $file = $request->file('filename'); $file->

canadianlover's avatar
canadianlover's avatar canadianlo...10yrs agoCode Review
4
1
Last reply by canadianlover 10yrs ago
Chrizzmeister's avatar

Checkout Form radio-button calculation

Hi, i am building an e-commerce website with laravel 5.2 I can add my products to my shopping cart, which is stored in a session. I can view my shopping cart & when i click confirm i go to a checkout page. All my items on the checkout page are still only in the session. Is this good practice or should i store stuff in de database after i go to the checkout page? . On my che

Chrizzmeister's avatar
Chrizzmeister's avatar Chrizzmeis...10yrs agoLaravel
0
1
wayanjimmy's avatar

I've set default user id = 1 if user is guest , any Idea the best way to implement it ?

I currently working on e-commerce website that allow guest user to add product into cart, So I set the default user id for guest is = 1, currently I just define a method in BaseController just like this class Controller { protected method getCurrentUserId() { if (Auth::guest()) return 1; return Auth::id(); } } Any idea about better approaches

wayanjimmy's avatar
wayanjimmy's avatar jekinney10yrs agoLaravel
1
1
Last reply by jekinney 10yrs ago
gnabin01's avatar

Managing Subdomain

I am working on a ecommerce site from laravel.I want subdomain according to user's.How can it be done ??Any configuration to be made?? Thanks in advance !!!

gnabin01's avatar
gnabin01's avatar premsaurav10yrs agoGeneral
8
1
Last reply by premsaurav 10yrs ago
puzbie's avatar

Any decent how-to guides for dealing with multiple languages?

I have looked the Laravel 5 localisation module, and this seems to designed for UI components, as opposed to volatile data like product information on an e-commerce site. So while I am happy with creating a site where a user can select the language and have menus etc displayed locally, I am unsure as to the best way to go about handling the data. For instance, take a book shop.

puzbie's avatar
puzbie's avatar puzbie10yrs agoGeneral
0
1
galironfydar's avatar

Task Scheduling - Listening to data in the future.

I am working on a peer-to-peer e-commerce website where you can buy and sell items. Every time an item has been bought, it notifies the user with a notification. A user is able to create a "wish list" where they can post ghost items that are not currently being sold on the site. But when a user has uploaded a similar item it needs to be able to notify the user that t

galironfydar's avatar
galironfydar's avatar galironfyd...10yrs agoLaravel
0
1
ncarreno's avatar

How to get only one result from hasMany relationship

Hi everyone, In my ecommerce I have a Product Model I use to deal with the products of the shop. This ecommerce is multilingual and I also have a ProductLang Model to deal with the translations of all products in all languages. I have these relationships: //Product Model public function lang() { return $this->hasMany('App\ProductLang'); } //ProductLang M

ncarreno's avatar
ncarreno's avatar pmall10yrs agoEloquent
5
1
Last reply by pmall 10yrs ago
keyur's avatar

Considering switching to Magento

Hi, just wanted to raise a discussion and get people's thoughts. Not really a question, but more sharing my situation. I'd originally written a custom cart in codeigniter, and then moved over to laravel a couple years ago. Took many months to build out and still ongoing with feature development. We are live with the cart and many orders have been placed on it. It is also one of

keyur's avatar
keyur's avatar lara506178yrs agoGeneral
11
1
Last reply by lara50617 8yrs ago
meeshka's avatar

WordPress and Laravel together

Hi, Background I'm working on a new project and using WordPress to publish content and would like to use a responsive theme to render the content. I want to use Laravel to power the custom ecommerce (REST API + billing pages). I have WordPress working and got Laravel installed inside a sub-folder called /my_api/. WordPress is accessible from http://localhost:1234/ and laravel v

meeshka's avatar
meeshka's avatar jgrossi10yrs agoLaravel
4
1
Last reply by jgrossi 10yrs ago
Vyshnia's avatar

Content management with Laravel

I faced the problem that there are no convenient admin packages for Laravel (except few) or e-commerce solutions. Also I used FrozenNode Laravel-administrator package for some Laravel projects. Now I want to built small e-commerce site and also site with catalogue and forum. I can implement both easily using Wordpress. But I want to practice in Laravel. (So may be I don't under

Vyshnia's avatar
Vyshnia's avatar Vishnja10yrs agoGeneral
8
1
Last reply by Vishnja 10yrs ago
jmagaro88's avatar

How does a job handle a deleted model as input?

What happens if a queued job is passed an Eloquent model as input, but the model is deleted before the job gets run in the queue? For example, I am building an eCommerce site with 5.2 where a customer can enter addresses and payment methods. A payment method belongs to an address. But if a customer tries to delete an address, rather than cascading down and deleting any payment

jmagaro88's avatar
jmagaro88's avatar CrushCandy10yrs agoGeneral
5
3
Last reply by CrushCandy 10yrs ago
El_Matella's avatar

Angular - Laravel API - How to organize URLs

Hello! I would like to train me to make an e-commerce website using Laravel for Back-end and Angular JS for Front-end. For the moment, my goal is to build a Laravel API communicating with an Angular JS front-end (I am not going to use Laravel views, I want the two technologies completely separate.) But I don't know really how to organize URLs. For example, I want my products UR

El_Matella's avatar
El_Matella's avatar El_Matella3yrs agoGeneral
5
1
Last reply by El_Matella 3yrs ago
light's avatar

Laravel cart with paypal & stripe support

Hello all, I'm creating e-commerce site in laravel 5.2. I will require a cart functionality with payment integration [stripe & paypal]. Is there any package or library that you recommend?

light's avatar
light's avatar light10yrs agoLaravel
9
4
Last reply by light 10yrs ago
lee__mason's avatar

js bundling vs seperation big app

im working on a pretty big app that works on the model of freemium, the base app will be simple cms, with extensions for all sorts of things from ecommerce, to newsletter system, support, etc. Going forward it would be nice to get external contribution, which is key to this question. im aware the current trend is to bundle up all js using webpack or browserify etc. which i agre

lee__mason's avatar
lee__mason's avatar lee__mason10yrs agoVue
0
1
Qnk's avatar

Passing data throw controllers not working propertly

I'm mixing Laravel and Vue (it's awesome!) on an eCommerce platform. I get a collection of Products from PHP and add to a list of available products. I want to add an article to a shopping cart when the button "Add to cart" is clicked. Nothing new at all. Well, I've built 2 templates, one for the products list and other for the cart. This is the code: <div id="

Qnk's avatar
Qnk's avatar Qnk10yrs agoVue
0
1
joedawson's avatar

SSO Server with dedicated Socialite Provider

Hello all, I'm so sorry for this super long thread, but I wanted to provide as much information as possible to keep the amount of back and forth to a minimum :) I recently posted a thread asking how I should go about establishing some kind of connection between multiple Laravel applications - thankfully I was nudged in the direction of a dedicated SSO application. I now, curren

joedawson's avatar
joedawson's avatar ARCANEDEV10yrs agoLaravel
11
1
Last reply by ARCANEDEV 10yrs ago
Sam's avatar

IE8 Yes or No?

Hi folks, So, I currently work full time for a large e-commerce store who are currently updating their design and modern development methods. As it stands Im trying to push forward the business case for dropping IE8 and concentrating our time on the supported browsers. I know this subject has many different aspects of it and depends on the business case/revenue from the demogra

Sam's avatar
Sam's avatar jlrdw10yrs agoGeneral
14
1
Last reply by jlrdw 10yrs ago
skaisser's avatar

Notify Slack Chanel on Exception

Hello Guys, I Curently run an Ecommerce entirely built in Laravel, And sometimes, there are some changes that ends up generating some erros. I use an awesome Slack Laravel api wich works fantastic, I wonder, Where should i put my slack notification, so that in case i get any errors from the application (whoops) it can notify me on my slack, with relevant info on the error so i

skaisser's avatar
skaisser's avatar skaisser10yrs agoLaravel
0
1
cihankusmez's avatar

Guzzle or Curl For Handling Vpos Requests ?

Hi, I'm converting my e-commerce project to Laravel. I was using cURL for vpos requests. $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $this->_server); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_HEADER, FALSE); curl_set

cihankusmez's avatar
cihankusmez's avatar cihankusme...10yrs agoRequests
2
1
Last reply by cihankusmez 10yrs ago
jmagaro88's avatar

Repositories within Repositories?

I'm working on an eCommerce application and using the repository pattern. I am using the database to store Carts and Cart Items so that customers can come back to their Cart after their session might have expired. Each Cart Item belongs to a Cart and has a Product Option, quantity, etc. And each Product Option belongs to a Product and has its own description, price, etc. My iss

jmagaro88's avatar
jmagaro88's avatar jlrdw10yrs agoLaravel
3
1
Last reply by jlrdw 10yrs ago
tolby's avatar

I would like to see more real life examples for different domains of activity

The videos are great, I learnead alot, but Laravel is a worderfoul framework that coud do much more. So if you can make more videos fore real life examples like : multiple sorting with checkboxes,dropdown menus, complex searching dynamic multiple dropdowns on select creating a datagrid sistem for admin area chat with multiple roles ecommerce examples (not just add to cart but

tolby's avatar
tolby's avatar ohffs10yrs agoLaravel
4
1
Last reply by ohffs 10yrs ago
theUnforgiven's avatar

Help with changing button/link

Hi all, I have basic e-commerce website selling clothing, but this image: When someone select an 'out of stock' item like shown i want to update the 'add to bag' button to another button and link to send an email or something. Here's the bit of js I have to check stock and colours etc: <script type="text/javascript"> $(function(){ $('.colors').on('

theUnforgiven's avatar
theUnforgiven's avatar lstables10yrs agoGeneral
31
1
Last reply by lstables 10yrs ago
kidas's avatar

Laravel 5 and multisites in shared hosting

Hi everybody, I'm new in laravel and my intention is to replace our ad hoc CMS with a lavarel based one. But i like (and must for memory and maintenance reasons) tu use one laravel installation for many sites in a shared hosting. I've read some related responses and the most part suggests to put every site public_html under the public dir of laravel: A) docRoot ....app ....boot

kidas's avatar
kidas's avatar ademiawans...9yrs agoLaravel
1
1
Last reply by ademiawansyah 9yrs ago
CROSP's avatar

Token Based Authentication how secure is it ?

Hi, I am fullstack developer, mainly focused on mobile native applications and API for the server side in order to expose resource to the client, as far as I am developing native mobile clients, there is no way to use web based authentication methods like sessions. REST API is stateless so the most proper and widely used method to do this is to use token authentication. I have

CROSP's avatar
CROSP's avatar jekinney10yrs agoGeneral
3
1
Last reply by jekinney 10yrs ago
jmagaro88's avatar

Dependency Injection in Self-Handling Jobs

After watching Jeffrey's awesome command-oriented architecture videos, I'm inspired to try implementing synchronous Jobs for my eCommerce project (AddItemToCart, RemoveItemFromCart, etc.). But one thing I'm trying to wrap my head around is dependency injection within jobs. From the Laravel 5.1 documentation in the Serve Container chapter, it seems that dependencies can be injec

jmagaro88's avatar
jmagaro88's avatar normkatz9yrs agoLaravel
3
70
Last reply by normkatz 9yrs ago
thinkjay's avatar

Help with Filterable Database Results

Hi, I'm displaying a view from my database that serves as a report. I want the ability for a user to filter the results based on demographic values (ex: State, Year, etc). I want it to update the results live, similar to e-commerce sites like Amazon where you filter by number of stars, or filter by price ranges. You click or select from a dropdown and the results update live (s

thinkjay's avatar
thinkjay's avatar ahuggins10yrs agoGeneral
3
1
Last reply by ahuggins 10yrs ago
MehulBawadia's avatar

Maximum function nesting level of '100' reached, aborting Laravel 5.1

I am making an ecommerce web application in Laravel 5.1. While examining the application's admin panel for editing a particular product, I got an exception: FatalErrorException in Container.php line 1057: Maximum function nesting level of '100' reached, aborting! I have implemented Repository Pattern in my application and it is still in development stage. Here's the stack trac

MehulBawadia's avatar
MehulBawadia's avatar NomaD10yrs agoLaravel
9
1
Last reply by NomaD 10yrs ago
jakeryansmith's avatar

Needing help with app/mysql architecture.

I'm developing an Ecommerce platform that is a little unique in that it allows customers to modify their order for a period of time. Basically, a customer has an ordering window (sometimes as long as 6 weeks) where they can add/update/items on their order, and they can only have one order open at a time. All orders would be saved to the DB initially, there would never be a shop

jakeryansmith's avatar
jakeryansmith's avatar jakeryansm...10yrs agoGeneral
4
1
Last reply by jakeryansmith 10yrs ago
itsgoku's avatar

Complex coupon/offers system

I am trying to build a coupon functionality to an ecommerce website where in the user can apply various kinds of coupons/offers. Some of the most important types of offers/coupons would be : Discount on particular item. Discount on a whole category. Specific User based coupons. % based coupons. referral based coupons (optional) What I could think of was using a coupons datab

itsgoku's avatar
itsgoku's avatar keyurdpate...5yrs agoTips
3
1
Last reply by keyurdpatel 5yrs ago
adiss's avatar

How to store in DB different product with similar attributes

What is the best way to store product data in ecommerce application? Example if i have many products with similar attributes like CD -> Memory CD -> Price Ram -> Memory Ram-> Price Notebook -> Processor Notebook-> Memory Notebook->ScreenSize Notebook-> Price Workstation-> Memory Workstation->Processor Workstation->ScreenSize Workstation->P

adiss's avatar
adiss's avatar bestmomo10yrs agoGeneral
1
1
Last reply by bestmomo 10yrs ago
MehulBawadia's avatar

Got TokenMismatchException in VerifyCsrfMiddleware.php line 16 laravel 5

I am making an ecommerce web application using Laravel 5. Now I am stuck at the payment integration. I am using CCAvenue as my payment integration, but there is no support provided from the ccavenue itself for laravel framework. So, after a bit of research, I got this package called Indipay. This package works completely fine. However, I get TokenMismatchException. Though the t

MehulBawadia's avatar
MehulBawadia's avatar biswajitde...9yrs agoGeneral
12
1
Last reply by biswajitdey 9yrs 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.