Browse Forum Podcast
All ThreadsLeaderboard
  1. Discussions

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

User1980's avatar

Laravel validator Mimes SIZES not working

Hello, When I upload a file with vue and try to check it with the Laravel validator using: $validator = Validator::make($request->all(), [ 'file1' => 'nullable|mimes:jpeg,png,jpg|max:500|dimensions:max_width=400,max_height=400', ]); if ($validator->fails()) { return response()->json(['errors' =>

User1980's avatar
User1980's avatar User19804yrs agoEloquent
2
1
Last reply by User1980 4yrs ago
tomasosho's avatar

cors error vue js laravel api

Hi, I keep getting this cors error whenever I try to upload a file from my vue js frond end to my laravel API backend //vue form <form method="post" enctype="multipart/form-data"> <input type="file" accept="application/pdf" ref="identity" id="identity" v-on:change="handleFileUpload(), submitFi

tomasosho's avatar
tomasosho's avatar tomasosho4yrs agoCode Review
1
1
Last reply by tomasosho 4yrs ago
farshadf's avatar

Serialization of 'Illuminate\Http\UploadedFile' is not allowed laravel excel import

i am trying to import an excel using laravel excel package and trying to use the queue feature for that like below : $import = new OrderFileImport($request->all()); $import->Sheets('Sheet1'); Excel::queueImport($import,$request->file('file')); return redirect()->back(); and then in my FirstSheetImport i am doing like below : class FirstSheetImport implements To

farshadf's avatar
farshadf's avatar farshadf4yrs agoLaravel
2
1
Last reply by farshadf 4yrs ago
zerraph's avatar

Storage::putFile without default disk

From my understanding, Storage::putFile is used to upload a file directly to a service such as s3 as opposed to moving it through the web server. However, Storage::disk('s3')->putFile() seems to be invalid. If I want to upload to a non-default disk, I need to use Storage::disk('s3')->put() instead. Is there a workaround to this, or am I stuck having to save to the defau

zerraph's avatar
zerraph's avatar Sinnbeck4yrs agoLaravel
12
2
Last reply by Sinnbeck 4yrs ago
freemium's avatar

dropzone timeout 30 sec

<script> var dropzone = new Dropzone('#uploadFile', { previewTemplate: document.querySelector('#preview-template').innerHTML, parallelUploads: 5, thumbnailHeight: 120, thumbnailWidth: 120, maxFilesize: 1000, filesizeBase: 1500, uploadMultiple: true, timeout: 1800000,

freemium's avatar
freemium's avatar Snapey4yrs agoLaravel
9
1
Last reply by Snapey 4yrs ago
lirone's avatar

Document storage and production - How to store PDF data in production ?

Hi, I'm happy and pretty excited because I almost deployed successfully my first app in production using Heroku. However, I still need help for something that may be simple. I have created an app where user can see some information from PDF files and download them. For exemple info1.pdf - info2.pdf, etc. On my local environment, I have created a folder in storage/app/public cal

lirone's avatar
lirone's avatar lirone4yrs agoLaravel
4
1
Last reply by lirone 4yrs ago
ahmeda's avatar

The script tried to call a method on an incomplete object

I have an excel file containing 8K products I'm using package Laravel-excel when I upload the file just 1K of products being uploaded and then I got this error in jobs_faild table: Error: The script tried to call a method on an incomplete object. Please ensure that the class definition "App\Imports\ImportProducts" of the object you are trying to operate on was loade

ahmeda's avatar
ahmeda's avatar ArturHanus...3yrs agoLaravel
9
3
Last reply by ArturHanusek 3yrs ago
spAo's avatar

Uploading video to table

Hello all! I'm trying to upload video file to table. I'm using resumable.js and laravel chunk. Video upload works fine it's uploads to lessons folder but now i want to store this video to table so user can upload lesson. public function storeLesson(Request $request) { $request->validate([ // Added to store file to lessons table 'name' => 'required

spAo's avatar
spAo's avatar SilenceBri...4yrs agoLaravel
1
1
Last reply by SilenceBringer 4yrs ago
danimohamadnejad's avatar

Laravel mimetypes:application/zip passes linux but not widows!

Hi everyone. I have a rare situation. I am building a Laravel - Vue application on Ubuntu20.04. I upload an application/zip file using axios through following method: <script> import axios from "axios" export default { name:'Application', methods:{ upload_file(event){ const file = event.target.files[0]; var formdata = new FormData() for

danimohamadnejad's avatar
danimohamadnejad's avatar danimohama...4yrs agoGeneral
2
1
Last reply by danimohamadnejad 4yrs ago
danimohamadnejad's avatar

Laravel, large files cannot be uploaded

I am trying to upload a file as large as 20 MB. Controller validator returns "File failed to upload" error!! does anybody have any solution? I have also set upload_max_filesize and post_max_size but none seems to work.

danimohamadnejad's avatar
danimohamadnejad's avatar Sinnbeck4yrs agoGeneral
12
4
Last reply by Sinnbeck 4yrs ago
EbrahemSamer's avatar

How to reinstall and setup an existing laravel project on another server?

I've done working on project with laravel and the client want to achieve something.... He needs simple way to install the same project on a new server with new domain... for example: if the project on this domain: test.com He need to go to the cpanel and Compress all files in as ZIP File and upload it in a different cpanel at new domain for ex: ABC.com How to make something sim

EbrahemSamer's avatar
EbrahemSamer's avatar Sinnbeck4yrs agoLaravel
1
1
Last reply by Sinnbeck 4yrs ago
Matheeus's avatar

Laravel S3 Storage put returns boolean instead of path

Hello, I'm using DigitalOcean Spaces (S3 compatible) for storing my Laravel's app file. Now I'm trying to make a .txt file inserting in it a text, with this code: $file = Storage::disk('digitalocean')->put('generated-file/'.$title.'.txt', $content); return $file; But instead of the path of the file, I get a boolean, so when I try to get the complete url with this method: Sto

Matheeus's avatar
Matheeus's avatar Snapey4yrs agoLaravel
3
1
Last reply by Snapey 4yrs ago
mathewparet's avatar

Laravel: SignatureDoesNotMatch when uploading to Linode Object Storage

I am using Laravel S3 drive to upload files to Linode Object storage. My config is like this: FILESYSTEM_DRIVER=s3 AWS_ACCESS_KEY_ID=hidden-my-access-key-id AWS_SECRET_ACCESS_KEY=hidden-my-access-key-secret AWS_DEFAULT_REGION=ap-south-1 AWS_BUCKET=bucket-name AWS_URL=https://bucket-name.ap-south-1.linodeobjects.com AWS_ENDPOINT=ap-south-1.linodeobjects.com But when my Laravel

mathewparet's avatar
mathewparet's avatar drewdan3yrs agoLaravel
1
1
Last reply by drewdan 3yrs ago
ayoubben's avatar

Laravel ajax error 419

I'm trying to upload video file to database with ajax , but i keep getting error 419 i search for it i found that i need csrf token but already set it up i don't what the problem i couldn't fin any answer for my problem can someone help ? meta tag : <meta name="csrf-token" content="{ { csrf_token() } }"> html code : <div cla

ayoubben's avatar
ayoubben's avatar ayoubben4yrs agoLaravel
2
1
Last reply by ayoubben 4yrs ago
mozew's avatar

Error encoding model [App\Sacrifice] with ID [32] to JSON: Recursion detected

I'm trying to modify a record. This record contains an image and can also be modified. I don't know how to modify the image that is saved in a public directory in the project. This is my code for uploading images(it takes place inside my bootstrap model). When I upload the image,and click on the submit button,the image should inserted into db and the same should be retrieved an

mozew's avatar
mozew's avatar irankhosra...4yrs agoLaravel
6
1
Last reply by irankhosravi 4yrs ago
ahmeda's avatar

Queue with AWS EB & Laravel

I just follow this blog post to install Supervisor on AWS EB with Laravel, as we know there is two way to put environment variables in the project: - Put all environment variables directly on AWS EB from the config - upload .env file with the project files the wired thing when following the first way then installs the Supervisor the queue does not process! But the second way w

ahmeda's avatar
ahmeda's avatar fideloper4yrs agoServers
1
1
Last reply by fideloper 4yrs ago
johnDoe220's avatar

Illuminate\Http\Exceptions\PostTooLargeException

Hi. When I upload a file of more than one megabyte in Laravel, it gives me an error. I should add that exactly this source code works without problems in Windows, but in Linux it gives me this error. For better diagnosis, I should add that in Both operating systems use xampp software and through the php.ini file upload_max_size and post_max_size and ... I increased it and resta

johnDoe220's avatar
johnDoe220's avatar johnDoe2204yrs agoLaravel
2
1
Last reply by johnDoe220 4yrs ago
fanpero87's avatar

Laravel Livewire Mixed Content error in production

Hello, I deployed a Laravel-Livewire on Digital Ocean and now I'm having a Mixed content problem when I try to upload a file. Here is the error: UploadManager.js:131 Mixed Content: The page at 'https://intake.freejiji.ca/clients/3/extensions' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://intake.freejiji.ca/livewire/upload-file?expires=16252516

fanpero87's avatar
fanpero87's avatar Lilbro1yr agoLivewire
11
1
Last reply by Lilbro 1yr ago
Zain_Zulifqar's avatar

Laravel Forge 502 Gateway error

I am trying to upload .xsls file which is 13mb in size set my execution time to 36000 and upload size to 100mb but still getting 502 Gateway error tried everything like ngnix config file changes setting limits there...etc i am using Mattbite excel

Zain_Zulifqar's avatar
Zain_Zulifqar's avatar Turner325yrs agoLaravel
4
1
Last reply by Turner32 5yrs ago
fanpero87's avatar

Refresh Livewire Page

Hello, I have a problem with my Livewire component after a bulk delete. Here is part of the component: public $client_id; public $showExtensionsModal = false; public $showDeleteModal = false; public $selected = []; protected $listeners =['refreshExtensions' => '$refresh']; public function deleteSelected() { $deleteCount = count($this->selected); $ex

fanpero87's avatar
fanpero87's avatar fanpero875yrs agoLivewire
2
1
Last reply by fanpero87 5yrs ago
Nomenjanahary's avatar

Minio

Expected Behavior Minio should be able to connect in JS. Current Behavior Error: connect ETIMEDOUT 185.172.100.60:9000 at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1146:16) Steps to Reproduce (for bugs) host a server with jelastic cloud, connect with new minio client Context trying to upload a file using node.js Environment Minio : RELEASE.2021-04-22T15-44-28Z

Nomenjanahary's avatar
Nomenjanahary's avatar Nomenjanah...5yrs agoGeneral
0
1
adhik13th's avatar

How to save image to directory in shared hosting laravel ?

I have a function to upload files. on Localhost it's not having an error. but after I deploy on shared hosting, its have a problem. If localhost, I'm not moving some folder, but on "tutorial" shared hosting, I need to make 2 folders. Laravel and public. this Laravel folder is all file on project Laravel without public It's my schema on my shared hosting (/home/sippaus

adhik13th's avatar
adhik13th's avatar adhik13th5yrs agoLaravel
6
1
Last reply by adhik13th 5yrs ago
Larstw's avatar

Methods for real time updating data within a blade view through broadcasting with Pusher

Dear everyone, I've been building an application lately and I am facing quite an interesting but challenging aspect in my opinion. I will try to explain it as clear as possible: When visiting the index page of the application, a visitor (no authentication is required) can upload a file, and will then be redirected to the /files/{id} URL. This URL returns a blade view with the f

Larstw's avatar
Larstw's avatar Larstw5yrs agoLaravel
6
1
Last reply by Larstw 5yrs ago
warpig's avatar

Cant install/update league/flysystem

First I was just trying to run composer require league/flysystem-aws-s3-v3 and I would typically get a list of problems associated with the current version, heres that list: Problem 1 - league/flysystem-aws-s3-v3[2.0.0, ..., 2.x-dev] require league/flysystem ^2.0.0 -> found league/flysystem[2.0.0-alpha.1, ..., 2.x-dev] but the package is fixed to 1.1.3 (lock file version

warpig's avatar
warpig's avatar warpig5yrs agoLaravel
4
32
Last reply by warpig 5yrs ago
martinszeltins's avatar

What is the proper way to persist storage on production using Docker?

I have 2 Docker containers - 1) for Nginx and 2) for PHP server. When I upload a file using Laravel, the file is not on the PHP server container but not on Nginx container. So far, I was able to solve this problem by creating a volume and sharing that volume for both containers. But is this the best way to do it? Does it have any performance downsides? P.S. I don't want to use

martinszeltins's avatar
martinszeltins's avatar martinszel...5yrs agoLaravel
0
1
vincent15000's avatar

Dynamic validating image format with Livewire : problem ?

Hello, I want to upload some images, but only images. I use a livewire component. I have a validation code. But it seems it isn't working as I want it to do. I get an exception error : This driver does not support creating temporary URLs as soon as I try to upload some file which is not an image, but I would like the validation code working and show the error message in the vie

vincent15000's avatar
vincent15000's avatar vincent150...5yrs agoLivewire
2
2
Last reply by vincent15000 5yrs ago
martzer's avatar

Can't display a jpeg photo

Hello, I've a problem and i can't find a way to fix it. I do have my laravel project in local, that can be access in local (127.0.0.1:8000) and my project on production is on my server. They are the same, expect that the .env , but they are both based on my gitlab project. In localhost, i do have no problem with photo, i can upload photo, remove them or change them from my jets

martzer's avatar
martzer's avatar Nakov5yrs agoLaravel
7
2
Last reply by Nakov 5yrs ago
drewdan's avatar

Uploading Large Files

Hey Guys, what would your approach be to upload a really large file? Say 500mb or larger? I tried chunking the file, but I just cannot seem to piece the file back together properly as its always got corruption issues. A colleague suggested uploading directly via axios to object storage. So I tried this using the S3Client class in Laravel. I use linode storage, so I have adjuste

drewdan's avatar
drewdan's avatar drewdan5yrs agoGeneral
3
1
Last reply by drewdan 5yrs ago
Neeraj1005's avatar

ErrorException Undefined index: name http://acl.test/newsletter/imports

In my project I've used the https://github.com/maatwebsite/Laravel-Excel package for importing the data. The problem I am facing that: If I upload correct file with correct header or row data File succesfully uploaded. But if I put wrong file with wrong data it sends me an error. Can anyone tells me how can I validate the proper validation for csv If i put wrong file then it s

Neeraj1005's avatar
Neeraj1005's avatar MarianoMor...5yrs agoLaravel
1
1
Last reply by MarianoMoreyra 5yrs ago
nicovillas's avatar

How to create a modal window by executing an action on approval

Hello everyone, I have little experience with the generation of modal and I want to learn in the best way, in fact, I generated a modal window with the ready and cancel button but I cannot perform the action on my controller. It is possible that by pressing the ready button I can upload my file to my controller. I will add my code. @if (Auth::user()->hasPermissions(['full-ed

nicovillas's avatar
nicovillas's avatar nicovillas5yrs agoLaravel
1
1
Last reply by nicovillas 5yrs ago
DavidSprauel's avatar

Valet requires Homebrew to be installed on your Mac

I'm working on a project which use nextcloud as a document manager and when i'm upload a file, I want to launch nextcloud files sync so I use envoy to manage my command. My command works when i type it in the CLI, it works when i'm running a test of my store new document. But when I use it the normal way through the interface and add a document, the buffer logs me : Valet requi

DavidSprauel's avatar
DavidSprauel's avatar DavidSprau...5yrs agoLaravel
0
1
singh's avatar

Laravel 7 - The image object from S3 is fetched but cannot be displayed

Added more information based on L7 docs at the bottom. I am successfully able to upload the file to S3 and get the object URI. However when the URI is put in the image tag, it shows a broken image. I can print the raw URI in my view as well as using dd. The $logoname below is pulled from a database query. $logoname = $company->logo; $destinationPath = &quo

singh's avatar
singh's avatar singh5yrs agoLaravel
3
1
Last reply by singh 5yrs ago
mohammednehru's avatar

View relationships data

Hello everyone, Every User has a subscription. Subscription have the subscription information beside the plan_id and user_id. The plan contains many features. Every feature has a file. The plan with features added using the control panel Then user in the website home page can choose one of these plans. After the user having a subscription the admin can send a file for each fe

mohammednehru's avatar
mohammednehru's avatar mohammedne...5yrs agoLaravel
5
1
Last reply by mohammednehru 5yrs ago
meyou12345678's avatar

an impossible error

a management system where different user have different role, and there is a time limit of a task for each user, if the time limit exceeds, the task gets disabled. I changed a role for a user in the sql server databse. also changed the time limit of a task for a user so the task gets enabled. after changing above details in the table on database in Microsoft sql server. the use

meyou12345678's avatar
meyou12345678's avatar Snapey5yrs agoLaravel
3
1
Last reply by Snapey 5yrs ago
packy's avatar

Storage putFile 504 error

I am uploading a large file to S3 and getting a 504 Gateway Timeout error returned to me. That confusing part is the file does indeed still upload, but on the frontend after a bit I get the 504 error? I am streaming the file so I thought this would prevent burning resources? Here is the full code: public function store(Request $request) { $request->validate([

packy's avatar
packy's avatar packy6yrs agoLaravel
0
1
ousid's avatar

The command "PATH=$PATH:/usr/local/bin NODE_PATH=`npm root -g` node

when i tried to generate a sitemap using laravel-sitemap by spatie team in localhost it gives me an empty sitemap. $path = public_path('/sitemap.xml'); SitemapGenerator::create(env('APP_URL'))->writeToFile($path); when upload the file into web server and tried to generate the sitemap it gives me this error: The command "PATH=$PATH:/usr/local/bin NODE_PATH=`npm

ousid's avatar
ousid's avatar rishabk3yrs agoLaravel
4
6
Last reply by rishabk 3yrs ago
chrisan's avatar

Best way to repeatedly dev/test jobs?

I have a job that a user must fill out a form and upload a file with. Based on the form settings the file can be processed in different ways. Currently I am doing fill out form and upload pdf php artisan queue:work --once (the job has a throw at the end to send it to failed jobs) php artisan queue:failed php artisan queue:retry #ID (or just knowing to increment the ID and ski

chrisan's avatar
chrisan's avatar chrisan6yrs agoLaravel
3
1
Last reply by chrisan 6yrs ago
ollie_123's avatar

HEELP.. Live Server Not Able To Download Files

Hi All I need some help asap. I've put my site onto a live server and when i login to the website, i cant access files that users have uploaded such as avatars & documents etc. On the live server the folder structure is as follows: /home /laravel_project //this has all of the controllers, models etc /Domains/mydomain/index.php //and all other public files etc when i uplo

ollie_123's avatar
ollie_123's avatar oli_d1116yrs agoLaravel
21
1
Last reply by oli_d111 6yrs ago
sbkkoovery's avatar

502 bad gateway error in laravel image uploading

am using 'intervention/image; package for image uploading.I am getting 502 bad gateway error while trying to upload large file like 10 mb jpeg.It is hosted in AWS apache server

sbkkoovery's avatar
sbkkoovery's avatar drewdan6yrs agoLaravel
1
1
Last reply by drewdan 6yrs ago
tani's avatar

404 not found error showing up on web server in ubuntu ec2 instance

Hello, I had laravel project setup on /var/www/html directory. Now I have deleted the laravel project directory from /var/www/html and upload phpinfo.php file in /var/www/html folder. Now, when I go to web page it is showing 404 not found error. No file is working under /var/www/html. How will php files work in this?

tani's avatar
tani's avatar siangboon6yrs agoServers
1
1
Last reply by siangboon 6yrs ago
DanielRønfeldt's avatar

Mission Impossible ? [Laravel 6 + InterventionImage + validation]

Hey everyone, this is my first post on Laracasts so bear with me :) I'm trying to figure out how to safely validate a file (image) upload during the creation of a new model instance. I need to make use of the InterventionImage library, so that the image is manipulated (cropped) when the new model instance is created. Here's my model: namespace App; use Illuminate\Database\Eloq

DanielRønfeldt's avatar
DanielRønfeldt's avatar DanielRoen...6yrs agoLaravel
9
1
Last reply by DanielRoenfeldt 6yrs ago
Thommass's avatar

fileupload getting null

Im getting an error when I try to upload a file: Call to a member function getSize() on null public function uploadAssesment(Request $request, Course $course) { $file = $request->bestand; } <form action="/upload/assesment/{{$course->id}}" method="POST" enctype="multipart/form-data"> @csrf

Thommass's avatar
Thommass's avatar Thommass6yrs agoLaravel
1
1
Last reply by Thommass 6yrs ago
iamcavic's avatar

Laravel storage:link only works only once

I am having a wired issue, when I upload files using public driver they are stored correctly to storage/public/folder Now when I run php artisan storage:link That creates the link in my public folder so I can access my resources. However when I upload new file it is not reflected in the public folder only in my storage folder Eg public -> storage link (no change) storage->

iamcavic's avatar
iamcavic's avatar Snapey6yrs agoLaravel
2
1
Last reply by Snapey 6yrs ago
X-Mac's avatar

DropzoneJs inside a multi field form

Hi there, I'm stuck with integration of Dropzone in my Laravel project. I have a form with some fields, and I would add Dropzone. My js Dropzone.autoDiscover = false; $(document).ready(function (e) { $.ajaxSetup({ headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') } }); $("#

X-Mac's avatar
X-Mac's avatar X-Mac6yrs agoJavaScript
8
1
Last reply by X-Mac 6yrs ago
mehmetanbaki's avatar

pathinfo()

Hey Laravelers I have this issue: ErrorException pathinfo() expects parameter 1 to be string, object given this is the controller <?php namespace App\Http\Controllers; use Illuminate\Support\Facades\DB; use Illuminate\Http\Request; use Session; use Maatwebsite\Excel\Facades\Excel; use File; class PeopleController extends Controller { public function index() {

mehmetanbaki's avatar
mehmetanbaki's avatar flusha2446yrs agoLaravel
7
1
Last reply by flusha244 6yrs ago
dineshsuthar92's avatar

Issues in image uploading using vue-wysiwyg

I am using vue-wysiwyg editor in my laravel-vue application. In this editor there is an option to upload images and through incomplete documentation of this package I am able to upload the image and get public url of the uploaded file. But this package works sometimes and does not work at all sometimes. Here is how I am using this package main.js import wysiwyg from "vue-w

dineshsuthar92's avatar
dineshsuthar92's avatar dineshsuth...6yrs agoVue
0
1
WebbieWorks's avatar

PostTooLargeException error

I am trying to upload a file and I am getting the above error. I have changed my php.ini file and restarted the local server. Laravel Framework 5.8.17 post_max_size = 2048M upload_max_filesize = 2000M When I run php -i. I see the changes are there. post_max_size => 2048M => 2048M upload_max_filesize => 2000M => 2000M I am completely confused on why I cannot upload

WebbieWorks's avatar
WebbieWorks's avatar bobbybouwm...6yrs agoLaravel
3
1
Last reply by bobbybouwmann 6yrs ago
Patriksandgren's avatar

app.js smaller on production server

I have many vue components in my project and all components contains templates with quite alot of HTML. I am worried that my app.js file is getting to big. But something is strange with it: When I compile with "npm run prod" my app.js file is 1.28 MiB. When I hard-refresh chrome my website on my developing station networks tab says app.js is 1.3 MiB. But when I upload

Patriksandgren's avatar
Patriksandgren's avatar willvincen...6yrs agoVue
2
1
Last reply by willvincent 6yrs ago
chrisgrim's avatar

Issue getting vue Data into my toBlob function

Hi, I am trying to setup vue-cropperjs and I have it almost working except for uploading. I am trying to get the .file to upload. I have the following method cropImage() { this.$refs.cropper.getCroppedCanvas().toBlob(function (blob) { this.data = blob; }); }, with this I get the error: Cannot set property 'data' of undefined. Howe

chrisgrim's avatar
chrisgrim's avatar chrisgrim6yrs agoVue
2
1
Last reply by chrisgrim 6yrs ago
AbdulBazith's avatar

Update laravel from 5.4 to newer version in live

Guys iam sticking into a problem. i have a domain xyz.com in cpanel with version php 7.3 inherited. i have two folders in that xyz.com. that is xyz.com/hotel -> this is for my hotel project and xyz.com/school ->school project. in this xyz.com/hotel -> Laravel Framework 5.4.36 version xyz.com/school ->Laravel Framework 5.8.33 version everything is fine. 2 days

AbdulBazith's avatar
AbdulBazith's avatar AbdulBazit...6yrs agoLaravel
3
1
Last reply by AbdulBazith 6yrs 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.