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

Ifrit's avatar

Image uploader uploading file size

I've created a page where you can drag and drop your image to be uploaded. The issue I'm having is that when I drag an image to the upload section I get the filesize of that image as well, so what happens is that when I save that image the filesize is saved along with the file name. Maybe someone can see where I went wrong. I'm using this for the file upload http://hayageek.com

Ifrit's avatar
Ifrit's avatar mstnorris9yrs agoLaravel
7
1
Last reply by mstnorris 9yrs ago
jpeterson579's avatar

Spark: profile image not found.

Did a fresh install of spark, everything seems to be working fine however when i tried to upload a profile image the page refreshed and the profile image is not being found. The link is pointing to http://localhost:8888/storage/profiles/557d848b184ab1248109f7b94fe03d7d.jpeg However I dont have a profiles folder in my public/storage/ directory.... Its empty, so where is this al

jpeterson579's avatar
jpeterson579's avatar laminbarro...8yrs agoSpark
19
1
Last reply by laminbarrow 8yrs ago
cristian9509's avatar

Laravel and multiple image with preview packages

What other good packages are there for multiple images with preview upload? I also need to allow users when they upload a single image to be able to manipulate the image before submission (crop, resize, etc). Is there any package that can do that? Also, on the server side, I am using Intervention/image but I was wondering if there are other good packages as well. Thank you

cristian9509's avatar
cristian9509's avatar cristian95...10yrs agoLaravel
0
1
zanakka's avatar

What is the best way thumbnail image for video?

Hello, According to my project, I need to upload video files at the back-end and will display these video files at the front-end(as like laracasts). So in this case, the thumbnail image for those uploaded single videos, should I ask user to upload single thumbnail image for each video file when they create. Or is it possible to generate thumbnail image from video files? Thanks,

zanakka's avatar
zanakka's avatar ganeshghal...8yrs agoLaravel
8
1
Last reply by ganeshghalame 8yrs ago
FrostNite's avatar

How to get animated gif image when uploading a gif image?

Currently my uploaded gif image keep getting converted to a static picture and my display image is static and not animated. How do i upload a gif image that retain it animation too? I am using intervention btw. $image = Input::file('image'); if($image) { $filename = time() . '.' . $image->getClientOriginalName(); $path = public_path('img/prod

FrostNite's avatar
FrostNite's avatar automica4yrs agoLaravel
4
1
Last reply by automica 4yrs ago
ctaljaardt's avatar

Image S3 Not working

Hello, Im trying to have a function where a user can change their profile picture, im using S3 and when following the tutorial im getting problems. Here is a copy of my controller. <?php namespace App\Http\Controllers; use App\User; use Session; use Input; use Illuminate\Http\Request; use Illuminate\Http\RedirectResponse; use Illuminate\Contracts\Filesystem\Filesystem; cl

ctaljaardt's avatar
ctaljaardt's avatar ctaljaardt11yrs agoGeneral
5
1
Last reply by ctaljaardt 11yrs ago
imJohnBon's avatar

What's everyone using for image cropping?

Seems like a common problem, I need to generate at least 5 different image sizes for a users profile image when they upload. How's everyone accomplishing this task? A quick Google search led me to this: http://image.intervention.io/ Which seems pretty solid. Thoughts?

imJohnBon's avatar
imJohnBon's avatar kreitje11yrs agoGeneral
4
1
Last reply by kreitje 11yrs ago
Lucious123's avatar

Handle ftp server with vs code command

Has anyone here worked with FTP server remote control? I'm currently fixing additional requirements for a production server project using an FTP host, username, and password. I connected to the remote server (ftp qr.misl.com.mm) and downloaded all the folders. They appear in VS Code, except for the folders inside the public directory, which only show as [DIR] js, [DIR] design,

Lucious123's avatar
Lucious123's avatar Lucius1231yr agoLaravel
2
1
Last reply by Lucius123 1yr ago
jha08's avatar

ADD watermark in my PDF file

Hi, can someone help me solve my problem? I have a upload blade file for PDF when i uploading a PDF file to add a watermark its work but when tried to upload converted PDF its not working. The file im trying to upload was from image converted to pdf. Im using TCPDF and i also tried Fpdi and a lot more but i cannot solve it this was my controller $pdf = new Fpdi(); $pageCount =

jha08's avatar
jha08's avatar jha081yr agoLaravel
1
1
Last reply by jha08 1yr ago
phayes0289's avatar

Spatie Media Library Pro Using unsecure http on Production Server and Failing

I have developed a project that heavily relies on Spatie Media Library Pro. Everything works great on the development server (locally), but when I moved it to a public web server, it is failing to upload the temporary image. The following two errors occur as a result of taking the first step in uploading an image, which is moving the image to the temporary state. [blocked] Th

phayes0289's avatar
phayes0289's avatar phayes02892yrs agoLaravel
5
1
Last reply by phayes0289 2yrs ago
YuMp's avatar

Update product problem laravel / livewire

Hi Folks, I'm trying to update a product without the need to redo the uploads again, of course if necessary be able to upload a new image, but for some reason I'm getting The state.product image field must be an image. The state.product image field must be a file of type: jpg, png., even though the field is set to null at creation, even without an image it works fine, but in th

YuMp's avatar
YuMp's avatar Snapey2yrs agoLivewire
6
1
Last reply by Snapey 2yrs ago
YuMp's avatar

Livewire validation rules problem

Hello, I'm trying to create custom rules for each file field in config/livewire and using the createpost method, but I'm getting an error when trying to validate any file The image failed to upload. does anyone have an idea what could be wrong? config/livewire 'rules' => [ 'image' => ['mimes:png,jpg,jpeg|max:140000'], 'gif' => ['mimes:gif|max

YuMp's avatar
YuMp's avatar YuMp3yrs agoLivewire
2
1
Last reply by YuMp 3yrs ago
sh1r3f's avatar

Uploading multiple base64 images fails the request

I've got an image uploader in my frontend that needs to preview the image before uploading. so in my frontend I convert the uploaded image to base64, display it.. then on form submission I send the base64 to the backend that converts it back to image and save on my storage. Everythings works fine just when I upload only one image! BUT. if I upload more that once the request sen

sh1r3f's avatar
sh1r3f's avatar sh1r3f3yrs agoInertia
2
3
Last reply by sh1r3f 3yrs ago
abkrim's avatar

405 Method Not Allowed in production in one form, any problem on others page forms

Hello I have a strange behavior in the profile form, in an app with TALL. It works for me locally, and it does not work for me in production But in production it sends me a message: Oops! An Error Occurred The server returned a "405 Method Not Allowed". Something is broken. Please let us know what you were doing when this error occurred. We will fix it as soon as pos

abkrim's avatar
abkrim's avatar Ola-Yusuf2yrs agoLivewire
12
1
Last reply by Ola-Yusuf 2yrs ago
Daniel-Pablo's avatar

How to remove media library pro original photo?

thanks, am trying to remove media library pro original photo, I mean I want to make the upload of the image and convert it, then DELETE the original file, the files can be very heavy so I will just need to keep the converted images, how to do that? Thanks in advance. I want to write something LIKE this $this->addMediaCollection('exam')->removeOriginal(); hope to make sen

Daniel-Pablo's avatar
Daniel-Pablo's avatar ArianGrey2yrs agoCode Review
4
1
Last reply by ArianGrey 2yrs ago
Neeraj1005's avatar

photo update, removing previous/old photo

In my laravel project for uploading the file I'm using the spatie media library package. But using this I'm facing the problem with updating the image. Basically for updating the image, when I upload the new image I want to remove old or previous image if post having the image. But in case it store as new image. can anyone knows how to do this update image and remove previous i

Neeraj1005's avatar
Neeraj1005's avatar automica5yrs agoLaravel
1
1
Last reply by automica 5yrs ago
Neeraj1005's avatar

Call to undefined function PhpOffice\PhpSpreadsheet\Reader\mime_content_type()

what is reason for this error? can anyone give me a suggestion? This is my controller code public function importData(Request $request) { $uid = Auth::user()->id; // echo json_encode($request->input()); $filename = ''; if ($request->hasfile('importFile')) { //-------------Image Validation-------------------------

Neeraj1005's avatar
Neeraj1005's avatar Sinnbeck5yrs agoLaravel
11
4
Last reply by Sinnbeck 5yrs ago
nafeeur10's avatar

I

I am getting the error while I am trying to upload a new image. What is the problem?

nafeeur10's avatar
nafeeur10's avatar ajithlal5yrs agoVue
3
1
Last reply by ajithlal 5yrs ago
shahr's avatar

Undefined variable: image_name

I want to upload and display image, but i get error Undefined variable: image_name if ($request->hasFile('image')) { $image = $request->file('image'); $image_name = $image->getClientOriginalName(); $image->move(public_path('images/images'), $image_name); } Style::create([ 'style_name' => $request->style_name,

shahr's avatar
shahr's avatar walidabou5yrs agoLaravel
4
1
Last reply by walidabou 5yrs ago
Neeraj1005's avatar

Str::replace does not working while uploading the file

https://imgur.com/ePpl0i8 This is my file upload table where image stored as uploads/media\images.png. But I want to store like this uploads/media/images.png if ($request->hasFile('image')) { if ($request->file('image')->isValid()) { $image = $request->file('image'); $extension = $image->getClientOriginalExtension();//Getting extension $

Neeraj1005's avatar
Neeraj1005's avatar Snapey6yrs agoLaravel
5
1
Last reply by Snapey 6yrs ago
AO's avatar

file does not exist or is not readable

I have 2 fields to upload zip file and image . When I upload both files I get this error : The "php805B.tmp" file does not exist or is not readable. if ($request->hasFile('rfile')) { $file = $request->file('rfile'); $file_name = time() . '.' . $file->getClientOriginalExtension(); $destinationPath = public_path('

AO's avatar
AO's avatar AO6yrs agoLaravel
11
3
Last reply by AO 6yrs ago
PaulCatalin97's avatar

Uploading a file error

So, I try to upload a file and shows me this error ! {"_token":"xBDlGKupDvKE3FPI84Eku5Kd6I6l5pKlRHs9LzCk","image":{}} what can i do to solve this ? class UploadCvController extends Controller { public function __construct() { $this->middleware('auth'); } public function index() { $profilecv = ProfileEmployee::

PaulCatalin97's avatar
PaulCatalin97's avatar phphupptec...7yrs agoLaravel
5
1
Last reply by phphupptechnologies 7yrs ago
NoneNameDeveloper's avatar

Doesn't delete files if exists from public folder | Laravel 5.7

I am using Laravel app with Intervention Image. However, if i upload a new image, old images will not be deleted. I'm writing a controller as follows. //user image $image_icon = $request->file('image_icon'); if($image_icon) { \File::delete(public_path() .'/upload/user/'.$user->image_icon.'-b.jpg'); \File::delete(public_path() .'/uplo

NoneNameDeveloper's avatar
NoneNameDeveloper's avatar Snapey7yrs agoLaravel
3
1
Last reply by Snapey 7yrs ago
HUGE_DICK_10_INCHES's avatar

How to set aspect ratio to 1:1 in vue cropper.js

<template> <div id="app"> <h2 style="margin: 0;">Vue CropperJS</h2> <hr/> <input type="file" name="image" accept="image/*" style="font-size: 1.2em; padding: 10px 0;" @change="setImage" /> <br/> <div style="width: 40

HUGE_DICK_10_INCHES's avatar
HUGE_DICK_10_INCHES's avatar saber13812...2yrs agoVue
2
2
Last reply by saber13812002 2yrs ago
ravipw1801's avatar

Deleting/Updating a file already present on the database

Building a laravel app, User can create multiple post & can upload only 1 image. In case he wishes to update later, he can do it easily, but if in case he completely wants to remove it, how this will take place? http://prntscr.com/l18h2w As you can see in the screenshot, It has a remove icon, but how to ACTUALLY remove the image? and replace it with default image like 'no-i

ravipw1801's avatar
ravipw1801's avatar ravipw18017yrs agoLaravel
4
1
Last reply by ravipw1801 7yrs ago
Kavyajain's avatar

Multiple input field referring to the same column name

Hello folks, i want to add multiple Input field, that is multiple addField with the same attribute. So, roomBanner_image is an array and i want 4 seperate input fields which refers to one column name roomBanner_image.. Please Help $this->crud->addColumn([ 'name' => 'roomBanner_image', 'label' => 'Room Banner Image', 'type' => 'árray

Kavyajain's avatar
Kavyajain's avatar Kavyajain7yrs agoLaravel
2
1
Last reply by Kavyajain 7yrs ago
Gabotronix's avatar

Getting mimes validation fail when not uploading optional file with AJAX

Hi, I'm trying to make a bug report system where the user sends a body of text and OPTIONALLY he can upload a file (image, doc...) along with the text to be sent to my mail inbox. However, when I only send text I get this error: "The file must be a file of type: doc, pdf, docx, zip, odt, jpeg, bmp, png, jpg, svg." how can I fix this, also when I upload a file along w

Gabotronix's avatar
Gabotronix's avatar lostdreame...7yrs agoGeneral
11
2
Last reply by lostdreamer_nl 7yrs ago
Dunesmart's avatar

Saving different Files separately to database

How do I upload two separate image files to different file locations and save to database? Everything works fine but only the business_logo is uploaded. I have included my table and controller here for details. Please I need help. Here is my table : Schema::create('basics', function (Blueprint $table) { $table->increments('id'); $table->string('business_name'); $table->

Dunesmart's avatar
Dunesmart's avatar Dunesmart7yrs agoLaravel
9
1
Last reply by Dunesmart 7yrs ago
seamuswc's avatar

No idea why file is not uploading.

MODEL: namespace App; use Illuminate\Http\Request; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Facades\Storage; class product extends Model { public function create(Request $request) { $file = $request->file('photo'); if ( $request->hasFile('photo') && $request->file('photo')->isValid() ) { $extension = $file->ext

seamuswc's avatar
seamuswc's avatar seamuswc8yrs agoLaravel
5
1
Last reply by seamuswc 8yrs ago
thc1967's avatar

UploadedFile::fake()->image(...) Failing in Controller Validation

My controller validation: $validations = [ 'name' => 'required|string|min:3|max:64|unique:'.$system->getTable(), 'file_upload' => [ 'nullable', 'image', 'mimetypes:image/jpeg,image/png,image/gif', 'max:60', ], ]; My PHPUnit test: ... Storage::fake('logos'); ... $item = make(System::class); $postData = collect($item->toAr

thc1967's avatar
thc1967's avatar thc19678yrs agoTesting
0
1
fero's avatar

Large scale laravel app structure ambiguity

Hi all, I'm trying to create a new app using laravel (5.6) as a framework and i'm having some trouble figuring out the structure should be. The first problem I ran into is where you put most of the logic. I know there's been a lot of questions about this topic but i couldn't find an answer reading the forums. To be more precise, what I'm trying to do is save a user to the datab

fero's avatar
fero's avatar martinbean8yrs agoLaravel
3
1
Last reply by martinbean 8yrs ago
kazyka's avatar

Getting error when uploading a file, but it's uploaded to directory

Hi, I try to upload a picture. I can't see what I am doing wrong, since the picture gets uploaded to the public_dir('img'), the public/img directory, but I get an error that says The image failed to upload. and the post is of course not created in my database. In my create.blade I have {!! Form::model($post, [ 'method'=> 'POST', 'route' => 'blog.store', 'fil

kazyka's avatar
kazyka's avatar kazyka9yrs agoLaravel
7
1
Last reply by kazyka 9yrs ago
Josh1:9's avatar

Uploading a video file above 2MB throws TokenMismatch Exception on Laravel 5.3.22

Hi everyone, I have been trying to upload a video through a form on my Laravel application but it has been difficult. I have csrf token on my form and still when I try to upload a video above 2MB the form throws up tokenMismatch Exception. When I try to upload either an image file or a video file less than 2MB it works fine. But immediately I try to upload a video file more tha

Josh1:9's avatar
Josh1:9's avatar Snapey9yrs agoLaravel
15
1
Last reply by Snapey 9yrs ago
amitshrestha221's avatar

Response from dropzone

I am using dropzone plugin for image and file upload.. how do I show validation errors and success message? the code is working, all i need is messages from dropzone upload.. my view: <form action="{{ route('completeprofile.seekersubmit2') }}" method="post" class="dropzone tesst" enctype="multipart/form-data"></form> my cont

amitshrestha221's avatar
amitshrestha221's avatar tomi9yrs agoLaravel
1
1
Last reply by tomi 9yrs ago
sunrise's avatar

laravel can not "move()" file

I am using Laravel 5.3. And I use cropper https://github.com/fengyuanchen/cropper to crop image and then upload it to back end via ajax. $('#uploadAvatar').on('click', function (e) { $("#image").cropper('getCroppedCanvas').toBlob(function (blob) { var formData = new FormData(); formData.append('croppedImage', blob);

sunrise's avatar
sunrise's avatar Snapey9yrs agoLaravel
2
1
Last reply by Snapey 9yrs ago
KHAN's avatar

Laravel 5 / Amazon S3 - Handling File/Image Uploads

Hi, I have an event resource. An admin can upload multiple files and also upload a separate image. This image will be used as a banner image to the event and a resized version for the event list view page. A user can download all these attachments on the event overview page. At the moment im using Amazon S3 to store everything Would cloudfront be a good solution to use here, h

KHAN's avatar
KHAN's avatar KHAN9yrs agoGeneral
0
1
KHAN's avatar

Laravel 5 and DropzoneJS

Hi, I have a form where an admin can create an event /event/create. The event has details such as address and title etc and they are also allowed to upload a banner image and then down below they can upload attachments. Im considering using dropzonejs for the multiple attachment upload. Hoover i would like to know if its possible to queue up the attachments and only upload them

KHAN's avatar
KHAN's avatar a23mer8yrs agoGeneral
12
1
Last reply by a23mer 8yrs ago
freeza's avatar

Service Class. Did i understand it?

Hello guys, just a question about business logic. First i put business logic like for example upload a profile image to user model in the user model. Then i noticed that i need it in my team model, too. Now i created a ServiceClass "UploadFileService" for this business logic. Is this the right place? My Models are cleaner now and the business logic is separated. I gue

freeza's avatar
freeza's avatar RomainLanz10yrs agoCode Review
8
1
Last reply by RomainLanz 10yrs ago
harhoo's avatar

Using queues to process repeated tasks

So my use case is this: I have a directory of 25000 images. I need to perform a a set of tasks on each image (resize it, upload it to S3, write a filename hash to a database). I have the code all set to take the next image and then process it. How do I start a queue and then stop it once all files are processed? This is what I have: class ProcessFile { public function fire(

harhoo's avatar
harhoo's avatar harhoo10yrs agoLaravel
0
1
intnine's avatar

Custom validation - square_image

Hi Everyone, My task is to upload images to a server and I have a custom rule - every image should be squared. The user allowed to upload 200x200, 800x800 like images but not allowed to upload a 450x320 image. I'd like to create a square_image validator but can't figure out what is the best approach to do it. I'd like to use it in my controller like this: $this->validate($re

intnine's avatar
intnine's avatar intnine10yrs agoLaravel
1
1
Last reply by intnine 10yrs ago
JejjE's avatar

Bloated controller - where to extract my logic to?

Hello everyone! I've been working on and off with Laravel, and I'm working on a project right now where I've reached a state of head scraching. My code is working but I know the code is out of place and I'm unsure of what to actually google to figure it out. I have a Controller that is resposible for uploads of images, wether it's file upload or downloading image from URL. It's

JejjE's avatar
JejjE's avatar kai_desu10yrs agoGeneral
9
2
Last reply by kai_desu 10yrs ago
Mitch-B's avatar

Saving File Input Name to database

I am trying to save a file (image) to my database. I am able to upload, move the image and save the name to my database. The problem I am having is that when i try to save the original file name to my database it only saves the temporary name. How would I save the original name to my database? Thanks.

Mitch-B's avatar
Mitch-B's avatar lorvent11yrs agoGeneral
17
1
Last reply by lorvent 11yrs ago
tarun-themesbrand's avatar

issue in upload or update profile image in jetstream 4

I created new laravel project using jetstream starter with Livewire. When i enabled the profile image feature and update image there was giving error 404 for image only. all other is working fine.

tarun-themesbrand's avatar
tarun-themesbrand's avatar tarun-them...2yrs agoLaravel
0
1
me10071990's avatar

Can I upload more than one image with different input box not multi select option

I am trying to upload more than one image , with title for each image individually, however, only one input box is working for featured(image). Here is my controller public function store(Request $request) { $this->validate($request, [ 'head_title' =>'required', 'title1' =>'required', 'title2' =>'required',

me10071990's avatar
me10071990's avatar me100719906yrs agoLaravel
2
1
Last reply by me10071990 6yrs ago
PaulCatalin97's avatar

How to show image in view when upload?

this is my session $employer->save(); if($employer){ return redirect()->route('imageuploademployer')->withSuccess('S-a incarcat cu success!'); }else{ return redirect()->back()->withDanger('Nu s-a incarcat! A aparut o eroare.'); and here i want to display image from directory @if(session()->has('success'))

PaulCatalin97's avatar
PaulCatalin97's avatar PaulCatali...7yrs agoLaravel
4
1
Last reply by PaulCatalin97 7yrs ago
Ap3twe's avatar

Image Intervention changing file upload to multiple files

I am using Intervention to upload files. Now I want to have the files upload as an array of files.(multiple) How do I go about it? I tried lab_quote[] but is not working. Or is it best practice to have each file as a separate column in the db? if ($request->hasFile('lab_quote')){ // get file Name $quotenameWithExt = $request->file('lab_quote')->getClie

Ap3twe's avatar
Ap3twe's avatar Sergiu177yrs agoLaravel
5
1
Last reply by Sergiu17 7yrs ago
kendrick's avatar

Image source not readable (Upload Job Exception)

I am trying to handle uploads this way: First upload the requested file locally, then trigger a UploadLogo Job to push the file to S3 and delete the local pathed-file. I am always getting this exception: Intervention\Image\Exception\NotReadableException: Image source not readable ... This is my setup: UploadLogo.php (Job) public $partner; public $filename; public functi

kendrick's avatar
kendrick's avatar splendidke...8yrs agoLaravel
18
1
Last reply by splendidkeen 8yrs ago
rob_utopano's avatar

How to upload a mobile captured image into laravel in base64 format?

Hey guys, I want to capture a picture on my website with the camera from the client (usually smartphone). It´s important that the picture is not stored locally and that the picture can be uploaded to the database in base64 format. Is there any suggestion, you can give me? It would be really nice if someone can give me an code example, cause my trys do not operate right. Thanks

rob_utopano's avatar
rob_utopano's avatar Snapey6yrs agoLaravel
10
1
Last reply by Snapey 6yrs ago
mazenelmasry's avatar

how to Create a image field to compress image before uploading it to the server.

i need create field for user to choose take image from mobile camera or selecet from gallery i need use package like this https://www.npmjs.com/package/browser-image-compression when user take image from camera or upload from gallary then this package compress this image on browser in real time before save page

mazenelmasry's avatar
mazenelmasry's avatar Snapey7mos agoFilament
3
4
Last reply by Snapey 7mos ago
OfficialEllaris's avatar

File Upload Via API Endpoint (HTTP Facade & Livewire)

I'm trying to upload the avatar via the API endpoint but every time I select a file Livewire resets the field. File upload works well when I tested with Postman. But the issue is using Livewire to consume the endpoint. Live wire just resets the file upload field when an image is selected. The other fields update easily without any issues. It's just the avatar field. Livewire Fo

OfficialEllaris's avatar
OfficialEllaris's avatar vincent150...1yr agoLivewire
1
1
Last reply by vincent15000 1yr 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.