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

davestar057's avatar

Using 'regular' login/registration AND api token based login/registration - using Jetstream?

Hi, I've been using Jetstream(intertia+vue) - to create a really cool and robust admin for a website. I am passing the data produced in the admin etc via API's to a seperate frontend, and all has gone great so far and loving jetstream. So I would have www.siteurl.com which is a self contained Nuxt web app, then admin.siteurl.com where admin can login and manage site etc... ..ho

davestar057's avatar
davestar057's avatar davestar05...4yrs agoLaravel
1
1
Last reply by davestar057 4yrs ago
aureliee123's avatar

laravel website slow loading time

Hello , i have an e-commerce website built with laravel and bootstrap i am suffering from a very very very slow loading time but i can't figure out where is the problem here's the link : http://petit.orcloud.dz/ any help will be very much appreciated THANK YOU

aureliee123's avatar
aureliee123's avatar aureliee12...4yrs agoLaravel
33
1
Last reply by aureliee123 4yrs ago
Sharim's avatar

Passing variable to the construct from controller

I want to export Products by tag. when I do dd($products). Its giving me correct array. But the downloaded file is empty. My controller: public function export(Request $request) { $tag = Tag::where('id', $request->selectTag)->get()->first(); $products = new ProductsExport([ [1, 2, 3], [4, 5, 6] ]);

Sharim's avatar
Sharim's avatar Sharim4yrs agoLaravel
8
1
Last reply by Sharim 4yrs ago
Sharim's avatar

Export Products in Excel & PDF by category

I'm exporting all products in excel. Its working. But I can't export in pdf. Moreover I want to export by category. But I don't know how to do it. ProductsExport: <?php namespace App\Exports; use App\Product; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\WithMapping; use Maatwebsite\Excel\Concerns\WithHeadings; use Maatwebsite\Excel\Concerns

Sharim's avatar
Sharim's avatar Sharim4yrs agoLaravel
0
1
Benounnas Oussama's avatar

Laravel Spatie Media query

Hello, i'm working with Laravel Spatie media library. when i search the media using a simple where() eloquent query, i get an empty collection, i tried using id it worked, i found a workaround which is: $mediaEmpty = $product->getMedia()->isEmpty(); // i had to convert it again to sql $sizeEmpty = $product->getMedia()->toQuery()->where('file_name', 'like', '%800

Benounnas Oussama's avatar
Benounnas Oussama's avatar Benounnas...4yrs agoLaravel
1
1
Last reply by Benounnas Oussama 4yrs ago
jordan-dev's avatar

Query by relations and problem with whereHas speed

I have models Product, Property, PropertyValue and product_property_value intermediate table for Many to Many relation with structure: product_id property_id When products fiters are in action, filter generate query builder like this Product::query() ->whereHas('propertyValues', function ($query) { $query->where('property_id', 'some_property_i

jordan-dev's avatar
jordan-dev's avatar jordan-dev4yrs agoEloquent
2
1
Last reply by jordan-dev 4yrs ago
akLearn's avatar

Why do Queues use UUID?

Main purpose of this question is to understand the benefits of UUIDs. I have read articles on why these are beneficial in an application which is tracking order IDs for an ecommerce application. I don't understand the benefit Laravel is getting from using it in Queues. In general... when is this a good tool? If you can link this to Queues, it would be great.

akLearn's avatar
akLearn's avatar akLearn4yrs agoLaravel
3
1
Last reply by akLearn 4yrs ago
stefancoding's avatar

Best framework if I using API

Which is the best option if I create an e-commerce website with millions of products. Vue or Livewire? Or do I have to use the booth? With Paypal and Stripe payment. And add items in the basket etc... My all template in HTML blade file now.

stefancoding's avatar
stefancoding's avatar Sinnbeck4yrs agoLaravel
4
1
Last reply by Sinnbeck 4yrs ago
Sharim's avatar

Session Flash Success continuously showing on some pages

I'm creating an e-commerce website. Its working fine in my localhost. But on server, sometimes add to cart button stopped working, and when I switch to another page, A success message appears again and again with this message Your product is successfully added in the cart. But cart is empty. I refresh the page open the website in guest windows. Cleared all cache and config bu

Sharim's avatar
Sharim's avatar Sharim4yrs agoLaravel
21
2
Last reply by Sharim 4yrs ago
Mahmoud.sh's avatar

How to store images using mysql?

I've made a small e-commerce website using vanilla PHP some time ago, I stored the products info in Mysql database, and I stored the images of the product as a path to the uploaded image by the shop owner, now I am developing another e-commerce website but using Laravel8, the question is how do you recommend me to store the images of the products? can I use Mysql to store image

Mahmoud.sh's avatar
Mahmoud.sh's avatar Nakov4yrs agoLaravel
3
1
Last reply by Nakov 4yrs ago
Gondwana's avatar

Filtering fields with same properties as Laravel Releationship HasMany

Hello, I am preparing an e-commerce site. I have two tables linked by Releationship. The first table is Products and the second is ProductAttributes. It is linked by product_id in two tables. When I query my Products table, in my Product model file public function attributes() { return $this->hasMany(ProductAttribute::class, 'product_id'); } I want to extrac

Gondwana's avatar
Gondwana's avatar NicolasMic...4yrs agoCode Review
5
1
Last reply by NicolasMica 4yrs ago
dajoeberlei's avatar

Persist Session ID in Feature Tests

Hi, im working on an e-commerce system where i try to make a shopping cart for guest users that are not logged in. In my Feature tests the session id wont persist so when trying to validate if the user can add a shopping cart item because the shopping cart? $location = Location::first(); $cart = ShoppingCart::currentOrCreate($location); $sessionId = Session::getId(); // dump(s

dajoeberlei's avatar
dajoeberlei's avatar benbjurstr...3yrs agoTesting
10
1
Last reply by benbjurstrom 3yrs ago
FounderStartup's avatar

Need advice for a button functionality on frontend with site developed laravel only.

Imagine an ecommerce page with list of products and you can click on a BUY button infront of each product. A user could click BUY buttons of multiple products without the page being reloaded. The BUY button changes to "PURCHASED" when clicked. I have something similar functionality. But I have developed the site using laravel 8 only. In my site the page refreshes over

FounderStartup's avatar
FounderStartup's avatar jlrdw4yrs agoLaravel
6
1
Last reply by jlrdw 4yrs ago
eriktobben's avatar

Spatie Laravel-permission: Schema Limitation in MySQL

Hi! I am working on an e-commerce app and is looking at Spatie's package Laravel-permission. In the prerequisite there is a section for "Schema Limitation in MySQL", where I have to set defaultStringLength to 125 because of the index. Will doing so cause any issues further down the line when restricting the max length for strings in the database? Is there a reason we

eriktobben's avatar
eriktobben's avatar Sinnbeck4yrs agoLaravel
1
1
Last reply by Sinnbeck 4yrs ago
WhitreDragon's avatar

Can I do some non testing operations with laravel dusk?

After consulting the document, I found that Dusk can only do some test operations? For example, I want to often use commands to simulate my browsing an e-commerce website to refresh the current page. Check whether the product inventory is sufficient, can I place an order? Simulate real-life operations? How will I complete the development of similar behavioral operations?

WhitreDragon's avatar
WhitreDragon's avatar WhitreDrag...4yrs agoCode Review
3
1
Last reply by WhitreDragon 4yrs ago
FREDERIC LD's avatar

How to setup my project

Hi, I have started working on an e-commerce site and the client has now changed the spec. He wants to be able to duplicate the site and change what the site sells. This site is going to sell only car parts. He want the next site to sell only bike parts. And the next one computer parts, ... Everything is going to be the same in terms of website management, customer management, .

FREDERIC LD's avatar
FREDERIC LD's avatar mabdullahs...4yrs agoGeneral
1
1
Last reply by mabdullahsari 4yrs ago
stephen waweru's avatar

unable to save data when a user is logged in or using session in laravel

I have an eCommerce project whereby a user adds his product to cart whether they are logged in or not..when they are logged in their user_id is saved on the database and when they arent, the session_id is saved for the and the user_id is saved as zero..I want to achieve this, for the user to proceed to the checkout page they have to log in or create an account. this works perfe

stephen waweru's avatar
stephen waweru's avatar stephen wa...4yrs agoLaravel
8
1
Last reply by stephen waweru 4yrs ago
ahmeda's avatar

how to block user by store in Laravel

I have an e-commerce app using Laravel multi-stores I have a feature that stores can block specific user the structure of DB: stores table: id - name - etc ... users table: id - name - etc ... products table: id - name - store_id - etc ... blocked_users table: "this table contains users that store blocked" id - user_id - store_id - created_at - updated_at I nee

ahmeda's avatar
ahmeda's avatar Sinnbeck4yrs agoLaravel
5
1
Last reply by Sinnbeck 4yrs ago
extjac's avatar

Naming fields correctly so I can read and store them in DB

I am adding a very small ecommerce capability to an app. The plan is to have the ability to create Products and dynamically add options and attributes (Example below). The issue I am having is that I am not able to name the fields in a way that I can read them with a foreach() or for(). Example of Data return [ 'name' => 'Hockey Jersey', 'prices' => [ 'base_price'

extjac's avatar
extjac's avatar extjac4yrs agoGeneral
2
1
Last reply by extjac 4yrs ago
newlaravelcoder's avatar

Selecting Dynamic Input Data

Hey all. I'm new to the Laravel universe and I'm putting the finishing touches on an ecommerce app. The final frontier now is getting the dynamic shipping rate, and adding it to my overall order total, but I'm at a loss as to how to do this. The rates are coming through a foreach loop like this @foreach ($rates as $rate) <tr> <td>

newlaravelcoder's avatar
newlaravelcoder's avatar newlaravel...4yrs agoLaravel
5
1
Last reply by newlaravelcoder 4yrs ago
newlaravelcoder's avatar

Property [weight] does not exist on this collection instance.

Guys, I'm brand new to the Laravel universe, and I apologize for this long message. I'm putting the finishing touches on my first ecommerce store, but I'm having issues getting the shipping api to function so I can charge the customer for shipping rates. I decided to go to with Shippo for the api because I heard it was compatible with Laravel, but it is difficult. I managed

newlaravelcoder's avatar
newlaravelcoder's avatar newlaravel...4yrs agoLaravel
16
1
Last reply by newlaravelcoder 4yrs ago
Gondwana's avatar

Relationship tables with Laravel and livewire

Hi I'm new to laravel and livewire. I am making an ecommerce website. I am performing crud operations on single tables. But I had a problem with the category table. I have categories and category_names_table table. When listing categories_table data, I need to match category_id column from category_names_table and write category_name value from category_names_table. Models, liv

Gondwana's avatar
Gondwana's avatar webrobert4yrs agoEloquent
8
1
Last reply by webrobert 4yrs ago
dane5890's avatar

Setting Up A One To One Relationship With User Model

Hi all. I'm still working on my Laravel 8 ecommerce project. I arleady have a user model with a user table for email and password. But now I need to give registered users the ability to create a shipping address to shipping rates to them. I created a user address table, and in the UserAddress model, tried to build a relationship with the User's id in the user table, but whe

dane5890's avatar
dane5890's avatar frankielee4yrs agoLaravel
6
1
Last reply by frankielee 4yrs ago
teecode's avatar

Automated Negotiation System

Which method is suitable for building an automated negotiation system for an ecommerce app already built with Laravel and VueJS? The negotiation function for now will accept user offerPrice from a form and compare with product lastPrice then return approved or rejected (after many attempts) based on a given condition. Should the algorithm be on Client side (vuejs) -- accepts

teecode's avatar
teecode's avatar teecode4yrs agoGeneral
2
1
Last reply by teecode 4yrs ago
WebbieWorks's avatar

Laravel & External API

I am trying to use an API token to pull data from an outside crm. Is there a tutorial on how I can set up laravel for this? In a nutshell, I am trying to pull an ecommerce admin backend and use it on my laravel front end. I need to pull product data and all. Example API from outside crm: { "meta": { "total_count": 0 }, "included": [ {

WebbieWorks's avatar
WebbieWorks's avatar jlrdw4yrs agoLaravel
4
1
Last reply by jlrdw 4yrs ago
dane5890's avatar

Integrating Shippo With Laravel 8

Hi all, I'm building an ecommerce app with Laravel 8. Everything is working fine, except for the shipping rates. I've installed Shippo, but I keep getting errors when I try to input some code in my checkout controller. Does anybody have any experience with Shippo?

dane5890's avatar
dane5890's avatar martinbean4yrs agoLaravel
4
1
Last reply by martinbean 4yrs ago
jawi289p's avatar

Adding 360 degree image in laravel

Hello, I am building an ecommerce web app with admin panel and now I want to add 360 image rotation with every product. As the products are to be managed by the admin so how to add those 360 image rotation. Please can anyone guide me?

jawi289p's avatar
jawi289p's avatar jawi289p4yrs agoLaravel
4
1
Last reply by jawi289p 4yrs ago
bhosted's avatar

View caching with different expire periods

Hi everyone, I'm creating a new e-commerce website. A lot of views contain product prices that don't change that often, but there is off course also a shopping cart on the page. The product prices are stable and don't change for months or maybe even years. The shopping cart can change on each request. What is the preferred way to precompile / cache the view in such a way not al

bhosted's avatar
bhosted's avatar martinbean4yrs agoLaravel
7
1
Last reply by martinbean 4yrs ago
Gpanos's avatar

Getting rid of soft deletes?

Hey all, A lot of people advocate that soft deleting is "bad". You lose data integrity, you have to include where clauses or partition your tables, GDPR issues etc. I myself felt all of this while implementing soft deletes in a big e-commerce site. The only reason that soft deletes were implemented in the project is to be able to display metrics and generate reports w

Gpanos's avatar
Gpanos's avatar Snapey4yrs agoGeneral
1
1
Last reply by Snapey 4yrs ago
jordan-dev's avatar

Theoretical question Eloquent Builder and MySQL

I creation product properties table. At first glance, this is a very simple task. "Product prorepty" table structure like this $table->id(); $table->unsignedBigInteger('product_id'); $table->string('key'); $table->text('value'); No problems, but we want query by property. No problem too. like this: Product::whereHas('property', function($query) { $query-

jordan-dev's avatar
jordan-dev's avatar tylernatha...4yrs agoEloquent
1
1
Last reply by tylernathanreed 4yrs ago
Prido's avatar

Laravel and grapesjs

Is it possible to implement grapesjs into laravel such that i build with grapesJs an ecommerce store that populates products straight from the db. I am able to create basic html sites and save them and render them on the website but i want to be able to do like wordpress does, i select a container in grapesjs, select which category of products to show, select limit etc then on

Prido's avatar
Prido's avatar Prido4yrs agoGeneral
2
1
Last reply by Prido 4yrs ago
Digitalam's avatar

Which System to Authenticate Multiple APIs?

Hi! I'm building a site with Laravel as the main site. I have Flarum (SPA forum) and GetCandy(SPA)/Aimeos e-commerce API on my subdomains. I want to authenticate all my APIs using a centralized user base on my main site. Should I use Passport or Sanctum to achieve this? Have anyone did it before?

Digitalam's avatar
Digitalam's avatar martinbean4yrs agoServers
4
1
Last reply by martinbean 4yrs ago
aureliee123's avatar

demo website for users

Hello , i am working on an e-commerce project and i want to make a demo version for the users the idea is that the user logs in adds / deletes / updates products and then after an hour i rollback back the databse removing the changes added by the user is there a way to do that using a package or session

aureliee123's avatar
aureliee123's avatar martinbean4yrs agoLaravel
1
1
Last reply by martinbean 4yrs ago
jordan-dev's avatar

Laravel not ordinary URL structure

I have the task to create not ordinary URL structure for Laravel ecommerce project. URL for product: /category-slug/product-slug Example: /fruits/orange But Url for sub-category have the same structure: /category-slug/sub-category-slug Example: /fruits/citrus My solution is: Route( '/{category}/{var}' , function(Category $category, $var) { if( $sub_category = SubCategory::whe

jordan-dev's avatar
jordan-dev's avatar webrobert4yrs agoLaravel
2
1
Last reply by webrobert 4yrs ago
Bhavil Jain's avatar

Issue with slick slider

Hi, so I'm making an e-commerce website (swimwear) using 100% Livewire. I'm using a theme that uses slick slider for displaying product images This is my first experience with livewire and for the most part, it's all working good. But, I'm having a specific issue now. Setup : I have SKUs based on the color and sizes and have various relationships linking the Product, ProductSKU

Bhavil Jain's avatar
Bhavil Jain's avatar Bhavil Jai...4yrs agoLivewire
0
23
Moradian.me's avatar

Problem with dynamic filtering using Laravel Scout with Algolia Facet Filters

Hi. We faced a problem when we were developing the search part of our E-Commerce website with dynamic filters using facet filters. We are getting the list of our facet filters by sending ["facets":"*"] as a parameter. For example, we have a filter for brands. When a user filters a brand (Ex: ["brands: Samsung"]), The facets["brands"] resu

Moradian.me's avatar
Moradian.me's avatar Moradian.m...4yrs agoLaravel
0
1
nizam12's avatar

Looking a product rating package in laravel

I am building an eCommerce application looking for a prebuilt product review package in laravel. Can anyone suggest to me some good packages. I am looking at something like amazon wherein can get an average of ratings all five start and at the same time, I should be able to see the rating and comment given by each user.

nizam12's avatar
nizam12's avatar martinbean4yrs agoLaravel
1
1
Last reply by martinbean 4yrs ago
stacker's avatar

Need enlightenment on Vue

I started learning Vue recently and from some reason it got stick to me that Vue is supposed to build SPA apps. (You can even see my other posts which show how ignorant I am in this matter) But I think I realized that it's not, and it's just a way to build frontend parts using JS. Not only SPAs. So if I want to build an ecommerce website using Laravel and Vue, I will end up hav

stacker's avatar
stacker's avatar stacker4yrs agoVue
4
1
Last reply by stacker 4yrs ago
salmazz45's avatar

What is important to be a good Laravel developer?

What is important to be a good Laravel developer? i am learned php oop and make a small application with mvc oop and learning laravel implementing e-commerce and news app what can i do and learn to be a good laravel developer and be in a senior level ?

salmazz45's avatar
salmazz45's avatar martinbean4yrs agoLaravel
2
1
Last reply by martinbean 4yrs ago
migonsk's avatar

Help with Jetstream for RTL website

I installed Jetstream and it did create nice ready registration, login and profile pages. But I have a few concerns for my website: It's an e-commerce website with payments. Will I need Passport instead of Jetstream? Or, they work together and not related to each other (Jetstream for user authentication and Passport for 3rd party API calls) I need to make an RTL language we

migonsk's avatar
migonsk's avatar migonsk4yrs agoCode Review
0
1
dane5890's avatar

Passing Variables Inside A Laravel 8 Livewire Blade File

Hi all, I'm using Laravel 8 to make an ecommerce site. So far, when I use the traditional laravel controllers, I can easily pass all the variables in a blade. When I try to use the same data for a livewire blade file, it keeps giving me a variable is undefined error. I'm new to livewire, so you have to forgive me for this mistake. Basically, I'm trying to mimic the same regu

dane5890's avatar
dane5890's avatar dane58904yrs agoLivewire
2
1
Last reply by dane5890 4yrs ago
Ninj4df's avatar

Inertia.js SSR vs Oldschool Multiple Page for SEO

Hello all, hope all of you are fine. I have a question that is on my mind the last weeks, so I want to get it clear. I love Inertia.js development, I also love it's SPA functionality (who doesn't love it? it makes browsing a web application PERFECT) Now that Inertia.js published it's SSR functionality I want to ask this: How it is compared on SEO with a old application with Bla

Ninj4df's avatar
Ninj4df's avatar rybbyyston...2yrs agoInertia
12
1
Last reply by rybbyystones 2yrs ago
adnankalyar007's avatar

PHP stripe integration

I am working on my fyp. I make a e-commerce webisite. I develop all of my website but I am facing problem with integration with stripe. Please upload video of how to integrate stripe with PHP and store data in database

adnankalyar007's avatar
adnankalyar007's avatar MichalOrav...5yrs agoPHP
1
1
Last reply by MichalOravec 5yrs ago
AungHtetPaing__'s avatar

TypeError: this.products.splice is not a function

Hello, i'm doing laravel e-commerce project for the first time. And faced a error when product in cart is remove from cart. Splice() doesn't work. here is my web.php Route::get('/cart', 'CartController@index')->name('cart.index'); Route::post('/cart/{product}', 'CartController@store')->name('cart.store'); Route::delete('/cart/{product}', 'CartController@destroy')->name

AungHtetPaing__'s avatar
AungHtetPaing__'s avatar aung htet...5yrs agoVue
9
1
Last reply by aung htet paing 5yrs ago
mariam528's avatar

Uncaught ReferenceError: gtag is not defined

hello i am doing google analytics eCommerce tracking in laravel . the code was working fine a few days ago. yesterday i changed my domain and changed all the necessary information but now it is showing error i have written in title. i am using default code for purchase event in controller gtag("event", "purchase", { affiliation: "Google online store&q

mariam528's avatar
mariam528's avatar mariam5285yrs agoLaravel
0
1
zoxed's avatar

SAAS app with Laravel

Hello, I am planning on creating the SaaS system to offer software that the company developed (e-commerce). first of all I'm not planning on using the packages that are available but i want to do it manually. I want to create subscription module to allow tenants to create their own sub-domain This is the sticking point..... I want my users to be able to also manage their own me

zoxed's avatar
zoxed's avatar a4ashraf5yrs agoLaravel
1
1
Last reply by a4ashraf 5yrs ago
marosmjartan's avatar

Passing data to the controller directly from route file

Hello, I'm working on such a simple e-commerce now. It is a classic e-shop with few categories. The idea is that I want to have a subpage for each category, right at the root of the url. like this: Route::get('/category-one', ...); Route::get('/category-two', ...); Route::get('/category-three', ...); I am currently solving this by having an invokable controller for every singl

marosmjartan's avatar
marosmjartan's avatar marosmjart...5yrs agoLaravel
3
1
Last reply by marosmjartan 5yrs ago
anilkumarthakur60's avatar

Sort product after searching product

I am doing an e-commerce project, I got a list of products displayed in product_searched_list.blade.php after search query or after going through category dropdown. i want to sort the list of the product after searching how can i implement such functionality method for a list of the product after search public function product_search(Request $request){ $querys=$re

anilkumarthakur60's avatar
anilkumarthakur60's avatar anilkumart...5yrs agoLaravel
12
1
Last reply by anilkumarthakur60 5yrs ago
sheikhuzairhussain's avatar

Model create method overriding doesn't work when called through a relationship

Hi. I am working on a large website that includes e-commerce along with many other things. E-commerce-related methods and relationships have been bundled into custom classes (referred to as modules) that extend the existing models. There is a User module and an Address module (the user's shipping address). I'm trying to override the built-in create method in the Address module

sheikhuzairhussain's avatar
sheikhuzairhussain's avatar bobbybouwm...5yrs agoLaravel
1
1
Last reply by bobbybouwmann 5yrs ago
kenprogrammer's avatar

Passport: Client Credentials Grant Tokens or Personal Access Tokens to authenticate 3rd party apps?

I am developing a payment gateway like Stripe (Uses our local mobile money transfer) which other developers can integrate with their e-commerce websites or apps. Which is the most suitable OAuth2 method to authenticate 3rd party apps. Client Credentials Grant Tokens or Personal Access Tokens? Any humble opinions will be highly appreciated.

kenprogrammer's avatar
kenprogrammer's avatar kenprogram...5yrs agoLaravel
2
1
Last reply by kenprogrammer 5yrs 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.