Browse Forum Podcast
All ThreadsLeaderboard
  1. Discussions

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

ganganimaulik's avatar

Is it safe to redirect to public folder with htaccess

<IfModule mod_rewrite.c> RewriteEngine On # Force SSL RewriteCond %{HTTPS} !=on RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] # Remove public folder form URL RewriteRule ^(.*)$ public/$1 [L] </IfModule> I plan use this htaccess on my server to remove public/ from url. is it a good idea?

ganganimaulik's avatar
ganganimaulik's avatar LiamHammet...9yrs agoLaravel
1
1
Last reply by LiamHammett 9yrs ago
shahr's avatar

.htaccess

I want to go to public/index.php with this code. I want to read .txt and .html, and I want to https RewriteEngine on # Redirect HTTP to HTTPS RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] # Rewrite requests to /public to the index.php file inside the /public directory # Remove public folder form URL RewriteRule ^(.*)$ public/ [L] # Se

shahr's avatar
shahr's avatar Snapey3yrs agoLaravel
4
1
Last reply by Snapey 3yrs ago
shahr's avatar

How to use .htaccess google.html and txt file

I want to read the Txt file and Html. How do I do it? And redirect to public/index.php .htaccess RewriteEngine on # Redirect HTTP to HTTPS RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] # Rewrite requests to /public to the index.php file inside the /public directory # Remove public folder form URL RewriteRule ^(.*)$ public/ [L] # Serve

shahr's avatar
shahr's avatar shahr3yrs agoGeneral
0
1
shahr's avatar

google 404 not found

I created a google console. The google console gives an Identification code for Google. Then I uploaded this file to cPanel. When I write in the address bar: https://example.com/googlee1c5cb16391abc123.html . I see this message. 404 | Not Found I think the problem is from the .htaccess file. I want to https .htaccess <IfModule mod_rewrite.c> RewriteEngine On # For

shahr's avatar
shahr's avatar LaryAI3yrs agoLaravel
1
1
Last reply by LaryAI 3yrs ago
Rocks's avatar

Api routes not found when hosted laravel application on server

I have created my application using laravel and vue.js and hosted my application on server in subfolder inside public_html, Accessing it using url like this: https://maindomain.in/projectfolder/public/login but after login if i click on any link it points back to https://maindomain.in/dashboard and i get 404 not found in console for the api routes that are accessed for eg. a

Rocks's avatar
Rocks's avatar jlrdw4yrs agoLaravel
1
1
Last reply by jlrdw 4yrs ago
nanadjei2's avatar

Remove URL query Parameters form url

I want to get the slug of a product but as part of that I am performing a query to get some data related to the product form another table. This is how am displaying my product in my .blade view; <form action="{{ route('user.showProduct', $productProductOption->product->slug) }}" method="GET"> <input type="hidden" value="{{

nanadjei2's avatar
nanadjei2's avatar Borisu8yrs agoLaravel
1
1
Last reply by Borisu 8yrs ago
Fzoltan87's avatar

Livewire Search

Hi everyone, I have a search form that displays the search results when I click the search button. However, I have an issue: when I add a city, the search is triggered. I can add multiple cities to the search at the same time. If I remove the added city, the search is also triggered. How can I prevent this from happening? Here is the source code: app\Livewire\PropertyList.php &

Fzoltan87's avatar
Fzoltan87's avatar Fzoltan871yr agoLivewire
4
1
Last reply by Fzoltan87 1yr ago
Sinres's avatar

400 Bad Request in method DELETE and PATCH

Hello Guys! I have a problem with delete and update records from DB by Ajax in Laravel project. Everything was fine until I moved the project to external hosting. Method Get and Post they work correctly. When I change PATCH to POST record updated correctly but this isn't a solution to the problem. In my localhost all working correctly ... This is my code: Update record // Updat

Sinres's avatar
Sinres's avatar Sinres7yrs agoJavaScript
3
1
Last reply by Sinres 7yrs ago
raygun's avatar

I keep getting a Whoops! There were some problems with your input. The content raw field is required

I dont understand why I keep getting this error message Whoops! There were some problems with your input. The content raw field is required my VideoFormFields.php use App\Video; use App\Tag; use Carbon\Carbon; use Illuminate\Contracts\Bus\SelfHandling; class VideoFormFields extends Job implements SelfHandling { /** * The id (if any) of the Post row * * @var integer */ protecte

raygun's avatar
raygun's avatar raygun11yrs agoGeneral
4
1
Last reply by raygun 11yrs ago
Deadmandream's avatar

The DELETE method is not supported for this route. Supported methods: GET, HEAD.

Hello i'm trying to create a CRUD webstite but when i'm in delete i get this error. Here is my view <form action="{{ url('/setting/destroy'), $row->id }}" method="POST"></form> <td> @csrf @method('delete')

Deadmandream's avatar
Deadmandream's avatar Deadmandre...5yrs agoCode Review
6
1
Last reply by Deadmandream 5yrs ago
mmings's avatar

Call to show method changing where application looks for application resources

The call to index() works fine and produces html ex: http://sign.vm-host.net/scripts The call to show() will add "documents" to url ex: http://sign.vm-host.net/documents/scripts public function index() { $documents = App\User::find(Auth::user()->id)->documents->where('parent_id','=',0)->toArray(); return view('documents.index', compact('documents

mmings's avatar
mmings's avatar mmings10yrs agoLaravel
5
1
Last reply by mmings 10yrs ago
PrinceMinky's avatar

Livewire form submit

Hello everyone. I'm working on a basic crud application, just to get used to the new Laravel Livewire features of 8.0 At the moment I'm struggling. I've basically copied and pasted bits of code just so I can understand it more. This is my code: It's designed to submit the form using livewire then handle it in the controller. However the post is successful but I get redirected b

PrinceMinky's avatar
PrinceMinky's avatar Jcoffe3yrs agoLivewire
4
1
Last reply by Jcoffe 3yrs ago
tasninta's avatar

How to add a unique url link foreach category

Hi, I am trying to add a unique url link foreach category How can I do that in my view? This is my view: @extends('layouts.app') @section('content') <div class="container"> <h1>Categories:</h1> @foreach ($categories as $category) <li>{{ $category->name }}</a></li> @endforeach </div> @endsection

tasninta's avatar
tasninta's avatar lostdreame...7yrs agoLaravel
1
1
Last reply by lostdreamer_nl 7yrs ago
IT2704's avatar

How to autofill form with id from the previous Form

I'm trying to autofill form with id of techinician from the previous form after clicking add button @extends('Layouts/app') @extends('Layouts.master') @section('content') @if(count($errors)) <div class="alert alert-danger" role="alert"> <ul> @foreach($errors ->all() as $message) <li>{{$message}}</li> @endfor

IT2704's avatar
IT2704's avatar IT27048yrs agoLaravel
2
1
Last reply by IT2704 8yrs ago
chagouani's avatar

How to autofill form with id from the previous Form

I'm trying to autofill form with id of techinician from the previous form after clicking add button interface tarification_tache @extends('Layouts/app') @extends('Layouts.master') @section('content') @if(count($errors)) <div class="alert alert-danger" role="alert"> <ul> @foreach($errors ->all() as $message) <li>{{$messag

chagouani's avatar
chagouani's avatar aurawindsu...8yrs agoLaravel
3
1
Last reply by aurawindsurfing 8yrs ago
satriamuda's avatar

Notifications

Illuminate\Database\Eloquent\Model::__construct(): Argument #1 ($attributes) must be of type array, int given, called in C:\xampp\htdocs\luma\app\Http\Controllers\HubungiController.php on line 62 controller : <?php namespace App\Http\Controllers; use auth; use App\Models\Logo; use App\Models\User; use App\Models\Contact; use App\Models\Logoweb; use Illuminate\Http\Request;

satriamuda's avatar
satriamuda's avatar webrobert3yrs agoLaravel
2
1
Last reply by webrobert 3yrs ago
BeginnerSoul's avatar

Validation on dynamic routes

Hello i have like this the web.php: Route::get('/update/{version}', [App\Http\Controllers\CheckNewVersion::class, 'download'])->name('files.download'); My FormRequests looks like this: <?php namespace App\Http\Requests; use Illuminate\Contracts\Validation\Validator; use Illuminate\Foundation\Http\FormRequest; use Illuminate\Http\Exceptions\HttpResponseException; use Il

BeginnerSoul's avatar
BeginnerSoul's avatar Snapey3yrs agoLaravel
1
1
Last reply by Snapey 3yrs ago
Hasnainali9's avatar

No response.

Hey working on a property solution I have a controller named booking Controller. <?php namespace App\Http\Controllers\Admin; use App\Http\Controllers\Controller; use Illuminate\Http\Request; class BookingController extends Controller { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index()

Hasnainali9's avatar
Hasnainali9's avatar Sinnbeck4yrs agoLaravel
1
1
Last reply by Sinnbeck 4yrs ago
rotfn's avatar

It gives an error when I select a photo in the Livewire component

My project is with Laravel and Livewire There was no problem in the local environment, I could easily select the photo and show it in the preview, and the photo would be uploaded. But when I got the project on the server When I select a photo in a form, it gives me an error: Image file upload was not successful. I tried all the ways from changing the disk upload file to executi

rotfn's avatar
rotfn's avatar rotfn4yrs agoLivewire
2
1
Last reply by rotfn 4yrs ago
wuschelino22's avatar

Update with CRUD

Hallo, i want to Update my SQL Databade via CRUD (Update) This is my Controller: <?php namespace App\Http\Controllers; use Illuminate\Http\Request; use View; use App\Url; use App\Categorie; class ShareController extends Controller { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() {

wuschelino22's avatar
wuschelino22's avatar Snapey7yrs agoLaravel
7
1
Last reply by Snapey 7yrs ago
wuschelino22's avatar

Laravel Crud Edit

Hello, i want to use Edit in CRUD for edit my Datas in the Database i have read the Documentation but i dont understand it. Can Someone help mit to solve my Problem? here is my Crud Controller <?php namespace App\Http\Controllers; use Illuminate\Http\Request; use View; use App\Url; use App\Categorie; class ShareController extends Controller { /** * Display a lis

wuschelino22's avatar
wuschelino22's avatar jlrdw7yrs agoLaravel
5
1
Last reply by jlrdw 7yrs ago
chagouani's avatar

how to display the average rate of "tarifs" for a selected tache

i have 2 tables the first tache 'id','libelle_tache' , 'tarif' and table tarification tache 'tache_id', 'tarif' .I would like to display in the interface tache.show the average rate of "tarifs" of this selected tache for all technicien. @extends('Layouts/app') @extends('Layouts.master') @section('content') @if(count($errors)) <div class="alert alert-danger&quo

chagouani's avatar
chagouani's avatar chagouani8yrs agoLaravel
0
1
IT2704's avatar

how to display the average rate of "tarifs" for a selected "tache"

i have 2 tables the first tache 'id','libelle_tache' , 'tarif' and table tarification tache 'tache_id', 'tarif' .I would like to display in the interface tache.show the average rate of "tarifs" of this selected tache for all technicien. @extends('Layouts/app') @extends('Layouts.master') @section('content') @if(count($errors)) <div class="alert alert-dange

IT2704's avatar
IT2704's avatar IT27048yrs agoLaravel
0
1
bayramgeldi's avatar

Hello I have problem on fetching data from database using CRUD

I want to fetch entries from database and show it. Entry ID will be fetched from url. Like this "http://gepeceper.dev/entries/1" And I get this error: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'entries.id' in 'where clause' (SQL: select * from `entries` where `entries`.`id` = 1 limit 1) This is Entry Controller: <?php namespace App\Http\Controllers;

bayramgeldi's avatar
bayramgeldi's avatar bayramgeld...8yrs agoLaravel
3
1
Last reply by bayramgeldi 8yrs ago
manojvarma's avatar

Laravel controller issue

Hi i created a controller by that i want to get the values from database. When i go to that URL i am getting this error "InvalidArgumentException in FileViewFinder.php line 137: View [Stockview.index] not found." My controller class is like this : `<?php namespace App\Http\Controllers; use Illuminate\Support\Facades\DB; use Illuminate\Http\Request; use App\Http\Req

manojvarma's avatar
manojvarma's avatar kamalpanhw...9yrs agoLaravel
8
1
Last reply by kamalpanhwar 9yrs ago
arispapapro's avatar

MethodNotAllowedHttpException in RouteCollection.php line 219:

Hello i get this message. My controller file: <?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Http\Requests; use App\Http\Controllers\Controller; use App\Student; use Auth; use DB; class StudentController extends Controller { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public

arispapapro's avatar
arispapapro's avatar arispapapr...10yrs agoLaravel
2
1
Last reply by arispapapro 10yrs ago
Davieboy's avatar

Collections problem

Been following the forum tutorial and ran into problems after fixing those problems i have created another and i cant just get my head round it, on my main forum page the ability to filter by channel is failing also same problem on create a post as it doesn't fetch the channels, instead i get this type of error Facade\Ignition\Exceptions\ViewException: Undefined variable: chann

Davieboy's avatar
Davieboy's avatar Davieboy6yrs agoCode Review
2
1
Last reply by Davieboy 6yrs ago
fbc's avatar

SQLSTATE[HY000]: General error: 1 no such table: estimates

I can't quite understand why I'm getting this error: routes/web.php: Route::resource('/estimate', 'EstimateController'); Route::get('/estimate/createrfc', 'EstimateController@createrfc')->name('estimate.createrfc'); Route::get('/estimate/createra', 'EstimateController@createra')->name('estimate.createra'); model Estimate.php: <?php namespace App; use Illuminate\Data

fbc's avatar
fbc's avatar Nakov6yrs agoLaravel
10
1
Last reply by Nakov 6yrs ago
masumluf's avatar

Laravel Controller edit function issue.

Hello Developers,I got an issue at my controller edit function. I dont see any value if i dd($brightStudent) This is my controller code below, <?php namespace App\Http\Controllers; use App\Model\BrightStudent; use Carbon\Carbon; use Illuminate\Http\Request; class BrightStudentController extends Controller { /** * Display a listing of the resource. * * @

masumluf's avatar
masumluf's avatar masumluf6yrs agoLaravel
4
1
Last reply by masumluf 6yrs ago
temi's avatar

Blank Page after redirect

Hello Forum, I have a form to create a blog post. It successfully creates the post in the DB. The following redirect gives me a blank page. But if I fetch the url via browser it works So the create method makes a redirect to /posts => blank page if I fetch it via browser /posts I get the page by the way why it redirects to /posts I would expect a redirect('/'); actually redi

temi's avatar
temi's avatar Snapey8yrs agoGeneral
2
1
Last reply by Snapey 8yrs ago
fortee's avatar

Laravel 5.1 - can't prevent page redirect on Ajax call

I'm trying to make an ajax call on a form submit, and prevent the page redirect. I was following the 'Everything Else' lesson but can't figure out why I'm getting redirected on the form submit. the js (function () { var submitAjaxRequest = function (e) { var form = $(this); var method = form.find['input[name="_method"]'].val(

fortee's avatar
fortee's avatar fortee11yrs agoLaravel
10
1
Last reply by fortee 11yrs ago
bajki's avatar

Laravel 8 Pagination page=1

Hi, i would like to remove page=1 from query. Is there any way to overide url() function in AbstractPaginator /** * Get the URL for a given page number. * * @param int $page * @return string */ public function url($page) { if ($page <= 0) { $page = 1; } // If we have any extra query string key / value pairs that need to be added // onto the UR

bajki's avatar
bajki's avatar webrobert4yrs agoLaravel
1
1
Last reply by webrobert 4yrs ago
PersonalHomePage's avatar

classic 404, kind of solved it. What's wrong with this?

I'm trying to make a view that will display things that were soft deleted inside the same controller called ServicesController. I made a Route for it as you can see below and when I would click on the link I would get a 404. The links are inside of a form with method="GET" and work if I remove my show route. I don't understand why it works when I remove the show Route

PersonalHomePage's avatar
PersonalHomePage's avatar MichalOrav...5yrs agoLaravel
1
1
Last reply by MichalOravec 5yrs ago
henryoladj's avatar

Generate Clean SEO URL

My URL is currently like this -> http://localhost:8000/news?tags=1. 1 is ofcourse the ID of the tags in the database i have tags with names (Entertainment, News) How can i make my URL Look like this lhttp://localhost:8000/entertainment instead of http://localhost:8000/news?tags=1 NewsController.php <?php namespace App\Http\Controllers; use App\News; use App\Tag; use Ill

henryoladj's avatar
henryoladj's avatar Snapey6yrs agoLaravel
36
1
Last reply by Snapey 6yrs ago
Veltix's avatar

How to show only current user branches

I have question I try to creat SaaS / Multi-tenant. Business owner registers account creates branch and add managers then they cant see other branches. Only their branches. My code at the moment shows branches correctly if Im logged in with owner. But if I login with manager I can see all branches. And if im logged in as owner and view branch and change url then I can see othe

Veltix's avatar
Veltix's avatar siangboon5yrs agoLaravel
1
1
Last reply by siangboon 5yrs ago
doko1975's avatar

The POST method is not supported for this route. Supported methods: GET, HEAD.

I have problems with a route and get the message "The POST method is not supported for this route. Supported methods: GET, HEAD." My Controller: <?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Cablelist; use App\Cablename; use App\Cabletyp; use App\Ordernumber; use App\Typeofmachine; use Auth; use Redirect; use PDF; use DB; class Cabl

doko1975's avatar
doko1975's avatar doko19756yrs agoGeneral
5
1
Last reply by doko1975 6yrs ago
henryoladj's avatar

Slug Route Return 404

I have stored my slug in my database but i get 404 Not found when i load the url NewsController.php <?php namespace App\Http\Controllers; use App\News; use Illuminate\Http\Request; use Illuminate\Support\Str; class NewsController extends Controller { function __construct() { $this->middleware('auth', ['except' => ['index', 'show']]); } /**

henryoladj's avatar
henryoladj's avatar Cronix6yrs agoGeneral
2
1
Last reply by Cronix 6yrs ago
aguirreg's avatar

Laravel 5.7 show.blade.php file not displaying uploaded images

Hey everyone, I am having trouble uploading images to my blog project. When I view my show.blade.php file, I cannot see the image that was uploaded, just a small image icon. I made sure to use php artisan storage:link as well but when I look at my database in Sequel Pro, the images are not being stored properly in "storage". They are being stored to /private/var/folde

aguirreg's avatar
aguirreg's avatar aguirreg7yrs agoCode Review
3
1
Last reply by aguirreg 7yrs ago
zettz's avatar

Delete multiple record return 500 Server Error

Hi, I want to delete multiple record using checkbox, but it always return 500 (Internal Server Error). Here's the controller: public function removeSelected(Request $request) { foreach($request['id'] as $id){ $user = tap(User::findOrFail($id)); $user->delete(); } } and here's the route: Route::post('users/remove', 'UserControl

zettz's avatar
zettz's avatar zettz8yrs agoLaravel
7
1
Last reply by zettz 8yrs ago
laracasts9924's avatar

Laravel Route Invalid Argument Exception Error

I am running Laravel 5.3.30. I am trying to create and admin section using an admin folder placing controllers and views. For some reason, I keep getting this error even though the routes are in my route file. Here is an example of Messages: I have multiple other pieces of data types such as links, users, widget and all of these that are in the admin folder are acting the same

laracasts9924's avatar
laracasts9924's avatar dxladner9yrs agoLaravel
2
1
Last reply by dxladner 9yrs ago
david001's avatar

Delete file dropzone+laravel

How to delete particular file form dropzone and database This is my upload function: public function postUpload(Request $request,$id) { $destinationPath = 'images'; $fileName= $request->file('file')->getClientOriginalName(); $upload_success = $request->file('file')->move($destinationPath, $fileName); if($uploa

david001's avatar
david001's avatar david0018yrs agoLaravel
2
1
Last reply by david001 8yrs ago
Nite's avatar

Laravel Form Errors not showing when using Google RecaptchaV3

I implemented Google RecaptchaV3 for a user registration form (the code for this form was created with make:auth in a previous Laravel version (I think it was around 5.6)). The user registration (and the captcha) work fine if the supplied form values pass the validation process, otherwise, the page just reloads (as it should), but with the $errors variable empty. If I remove th

Nite's avatar
Nite's avatar Nite5yrs agoLaravel
0
1
Adams_'s avatar

Unrecognized request URL (GET: /v1/customers/). If you are trying to list objects, remove the trailing slash

Please if anyone has any idea why I keep getting this error when I submitted the stripe subscription form should please help, this error got me stuck for a while now, just trying to create a subscription from the pricing page or subscription plan page, I have the plans stored in my database in a model called Plan. so what I want is for users to select a pricing plan monthly or

Adams_'s avatar
Adams_'s avatar Adams_5yrs agoCode Review
0
1
Zoul's avatar

Dropzone js is not working

HI all, I can drag images, and remove them too, however, the photos are not saved in my public directory, i would really appreciate your support ! Thanks =the form <form method="post" action="{{url('upload/store')}}" enctype="multipart/form-data" class="dropzone" id="dropzone&quo

Zoul's avatar
Zoul's avatar Sinnbeck5yrs agoLaravel
9
1
Last reply by Sinnbeck 5yrs ago
CookieMonster's avatar

How to get each reply id for an ajax request?

I have a thread that shows the post and replies from different users. So in each reply, I should be able to edit my reply after it is posted. Without reloading the page edit my reply, I implement jquery ajax to handle the requests. thread.show.blade.php: @extends('layouts.app') @section('content') <div class="container"> <div class="row">

CookieMonster's avatar
CookieMonster's avatar CookieMons...5yrs agoLaravel
0
1
Farirai's avatar

Laravel showing broken images and not saving the images to the public\categories folder but saving the image url to the database

My CategoryController <?php namespace App\Http\Controllers\Admin; use App\Http\Controllers\Controller; use Illuminate\Http\Request; use App\Models\Category; use App\Http\Requests\CategoryStoreRequest; class CategoryController extends Controller { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public functi

Farirai's avatar
Farirai's avatar Farirai3yrs agoLaravel
1
1
Last reply by Farirai 3yrs ago
vinubangs's avatar

How to add realtime progress bar while submitting a form

I am using laravel to upload a video file. I want to show realtime progress bar there. There is a form for video upload with many extra inputs. For the video I am using FFMPEG to crop and encrypt videos. This takes time. My form is: <div class="row" style="margin-top: 10px;"> <div class="col-lg-6"> <div class="form-group&quo

vinubangs's avatar
vinubangs's avatar vinubangs2yrs agoLaravel
2
1
Last reply by vinubangs 2yrs ago
Desssha's avatar

how send form data after js Approve paypal paying

i try to send data after pay Approve from paypal , want save this data about customer and create order after paying , here i check if paypal to send data }elseif ($request->payment == "paypal"){ $data = array(); $data['user_name'] = $request->name; $data['user_email'] = $request->email; $data['city'] = $reques

Desssha's avatar
Desssha's avatar Desssha4yrs agoLaravel
2
1
Last reply by Desssha 4yrs ago
ollie_123's avatar

Ajax file upload form - call to member function extension null

Evening All I'm trying to post a form to the database & to upload a file at the same time. I'm getting an error 500 call to member function extension() on Null which indicates its not getting the file extension. Please can someone tell me the best way to correct this. Controller public function store(Request $request) { $request->validate([

ollie_123's avatar
ollie_123's avatar oli_d1116yrs agoGeneral
5
1
Last reply by oli_d111 6yrs ago
Flex's avatar

Not uploading images to the dropzoneJS box in my form

I am working laravel 5.6 with dropzone JS box to upload images in my form. I am using dropzone box in programmatically. http://www.dropzonejs.com/#create-dropzones-programmatically <form method="post" action="{{url('form')}}" enctype="multipart/form-data"> {{csrf_field()}} <div class="form-group"> <labe

Flex's avatar
Flex's avatar Flex8yrs agoLaravel
1
1
Last reply by Flex 8yrs 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.