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

zerogpm's avatar

Best way to pass props with network call?

I have the following code Topics.vue <template> <div class="container"> <div class="row"> <div class="col-md-8 col-md-offset-2"> <div class="panel panel-default"> <div class="panel-heading">Topics</div> <

zerogpm's avatar
zerogpm's avatar zerogpm9yrs agoVue
0
1
BernardK's avatar

ErrorException in Macroable.php line 74: Method links does not exist.

Hello, My pagination function: {{ $articles->links() }} works perfectly on a view page with this path: View: /home/bk2/www/resources/views/articles/index.blade.php But the same exact code gives the ErrorException (below) in the following path: View: /home/bk2/www/resources/views/admin/articles/index.blade.php ErrorException in Macroable.php line 74: Method links does not exi

BernardK's avatar
BernardK's avatar SaeedPrez9yrs agoLaravel
3
1
Last reply by SaeedPrez 9yrs ago
ksorbo's avatar

How to detect current page number when using paginate?

I have set up pagination for a large list of subscribers (over 7000); it working correctly. Each page shows a sub list of subscribers with an edit link for each. I am using a standard resource route; the edit button links to '/subscriber/<#id>/edit' My question: Is there a way to detect which page the subscriber <#id> was on in the Subscriber::edit method? Paginate

ksorbo's avatar
ksorbo's avatar mahdimarja...4yrs agoLaravel
21
53
Last reply by mahdimarjani 4yrs ago
Craytor's avatar

Laravel Elixir Vue Component access $refs

Hello! I'm using Laravel Elixir and Vue Components and I'm trying to access the $refs within a component. In my instance, I am using VueJS Paginator, and I am trying to update the content of the pagination and what is being displayed. To create a pagination, they say you must do the following: <v-paginator :resource_url="resource_url" ref="vpaginator" @up

Craytor's avatar
Craytor's avatar Craytor9yrs agoVue
1
1
Last reply by Craytor 9yrs ago
vienna's avatar

Request data on same URL

I'm making a list of users which I want to add pagination to with Vue. All what I've seen is people making an API page that has this data on it and it's sending requests to that, though this contains information I don't want anyone to access. Would it be better for me smart for me to do this in vue or would it be better to do this with a simple ?page=1

vienna's avatar
vienna's avatar vienna9yrs agoVue
0
1
Amidamaru's avatar

Which JavaScript is better for a Simple System, React, Angular or VueJS

I developed a system in Laravel 5.3. I have not chosen a front-end javascript. I want to have features like parsing, pagination, data binding and automated search What do you think is better React, Angular or VueJs?

Amidamaru's avatar
Amidamaru's avatar Amidamaru9yrs agoLaravel
8
1
Last reply by Amidamaru 9yrs ago
iftikharuddin's avatar

How to Paginate the array?

I am working on a webapplication, which searches for places/locations via /search route. On /search route it displays all the matched/searched locations BUT the locations are array based i want to paginate through it which i did but now the problem arises in the view. In the view i used {!! $father->render() !!} which renders the pagination but when i try to go to the 2nd it

iftikharuddin's avatar
iftikharuddin's avatar bobbybouwm...9yrs agoLaravel
14
1
Last reply by bobbybouwmann 9yrs ago
newbie's avatar

ErrorException in Macroable.php line 74:

I am working to paginate my results from a database using a Laravel. the pagination is working. BUT the other functions of my controllers doednt work like the search function. i am getting the error ErrorException in Macroable.php line 74: Method links does not exist. this is my code in my blade : @extends('layouts.app') @section('content')

newbie's avatar
newbie's avatar newbie9yrs agoLaravel
1
1
Last reply by newbie 9yrs ago
zachleigh's avatar

Forum page links on mobile

On mobile, the only pagination links are arrows to access the next and previous pages. This means that if I want to go to the last page of a forum thread that is ten pages long, I have to open the first page, wait for the posts to load, scroll to the bottom hit the next arrow and then repeat this ten times. That takes an insane amount of effort and time.

zachleigh's avatar
zachleigh's avatar zachleigh9yrs agoFeedback
0
1
varovas's avatar

How to rearrange Eloquent query array in Laravel 5.3?

Hi guys, can anyone give me a tip, how to rearrange array, or give other technique how to get my featured posts on top of the page without losing pagination?. My code in controller: $posts = Post::latest()->paginate(10); And I get post list like this: POST POST POST FEATURED POST POST POST FEATURED POST FEATURED POST POST I want them to list like this: FEATURED POST FEAT

varovas's avatar
varovas's avatar varovas9yrs agoEloquent
0
1
daninthemix's avatar

paginate and keyBy?

If I chain keyBy('id') onto a paginate(50), I lose the pagination and just get an object of objects, keyed by id. Is it possible to do both?

daninthemix's avatar
daninthemix's avatar daninthemi...9yrs agoLaravel
0
1
jericopulvera's avatar

Handling Load speed for 1 million posts.

I generated a 100k posts and I noticed that it takes so much time to load. how do I handle this? This is how I get the posts. and I use Vue js v-for to list all the posts. public function fetchPostList(Request $request) { // Get All The 100k posts $posts = Post::all(); // Add calculated value to each posts foreach($posts as $post)

jericopulvera's avatar
jericopulvera's avatar jlrdw9yrs agoLaravel
4
1
Last reply by jlrdw 9yrs ago
Firemaps's avatar

::paginate(n)->where('condition')

I can't seem to call pagination links in bootstrap when a where condition is present. // This is what I am trying to do // controller $stuff = Stuff::paginate(3)->where('condition', 1); // 3 items get placed onto the view and pop off as expected // blade // however below the div, {{ $stuff->links() }}, or {!! $stuff->links() !!} or {{ $stuff->render() }} // doesn'

Firemaps's avatar
Firemaps's avatar tisuchi9yrs agoLaravel
2
1
Last reply by tisuchi 9yrs ago
jericopulvera's avatar

LengtAwarePaginator items

I have converted my collection to paginator but there is a slight difference. This is my code to convert my collection into a paginator $page = $request->get('page', 1); // Get the ?page=1 from the url $perPage = 3; // Number of items per page $pagination = new LengthAwarePaginator( $ranked->forPage($page, $perPage), count($ra

jericopulvera's avatar
jericopulvera's avatar Eco0123909yrs agoCode Review
2
1
Last reply by Eco012390 9yrs ago
afonso's avatar

Paginate and eager loading when using Laravel Scout

Hi I'm using Scout and I can't seem to be able to chain eager loading and paginate. Lazy eager loading is working (with('address', 'address.region') doesn't seem to work att all with search): return User::search($params['search'])->get()->load('address', 'address.region'); Pagination is working: return User::search($params['search'])->paginate($per_page); But I can't

afonso's avatar
afonso's avatar mevlutozde...9yrs agoEloquent
2
1
Last reply by mevlutozdemir 9yrs ago
gbdematos's avatar

API with Fractal - Where should logic go?

Hi! I'm building an API using Fractal, and my main question (at the moment) is: Where should the logic for includes go? Following Fractal's example: public function includeAuthor(Book $book) { $author = $book->author; return $this->item($author, new AuthorTransformer); } This logic is simple and contained in the BookTransformer, but what if I have

gbdematos's avatar
gbdematos's avatar gbdematos9yrs agoGeneral
1
1
Last reply by gbdematos 9yrs ago
Amidamaru's avatar

Can AngularJS 2 work with a JSON fetched table?

I am fetching the tables from the server using JSON and converted the files into a file. The html contains the records saved to the file. I want to use AngularJS and do some pagination and ajax search. My question is, can Angularjs2 worked with this kind of html table that was using JSON ?

Amidamaru's avatar
Amidamaru's avatar Amidamaru9yrs agoLaravel
9
1
Last reply by Amidamaru 9yrs ago
Selo's avatar

Error in paginating search results

Hi, I have a problem with the pagination of search results. I get the first page right, but for page 2 I get this error: QueryException in Connection.php line 729: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'page' in 'where clause' (SQL: select count(*) as aggregate from `books` where `id` like %% and `page` like %2% and `books`.`deleted_at` is null) Route: Route::

Selo's avatar
Selo's avatar MaxMatteo9yrs agoEloquent
1
1
Last reply by MaxMatteo 9yrs ago
JillzTom's avatar

Sort user based on followers count

I'm trying to sort users based on the followers count. I've a polymorphic relation to store the followers. //To get the followers $user->followers and I'm trying to find the users with most followers and sort it with pagination. How do I go about it?

JillzTom's avatar
JillzTom's avatar JillzTom9yrs agoLaravel
3
1
Last reply by JillzTom 9yrs ago
theFinalArbiter's avatar

Design pattern for rescourceful feed?

Hi. I would love to have some feedback on a controller used by a feed page in an app that I was building. Im going into a similar project now and feel that this approach is lacking in so many ways. But im still not sure how to design a good index method... What I need: *Filter on specific attributes *Sort on some attribute *Load x entries *Be able to pick up after the x entries

theFinalArbiter's avatar
theFinalArbiter's avatar theFinalAr...9yrs agoGeneral
0
1
ajmerainfo's avatar

Laravel Speed Issue

Hey Guys, I am really new to Laravel and came from .Net backgroud. I made simple listing page with pagination and load only 3 fields and 5 records with return json with ajax request and it took 200-900ms. After php artisan optimization it took 50-250ms. I might ok with this speed but need to find out that am I doing something wrong or missing? (This test with vagrant.) With sam

ajmerainfo's avatar
ajmerainfo's avatar ajmerainfo9yrs agoLaravel
6
1
Last reply by ajmerainfo 9yrs ago
Shobo's avatar

Paginate returns empty collection when filtering on primary key

I'm working on creating a search form for customers that allows multiple options, including the customer's id (primary key). When filtering on a column that isn't the primary key, everything works fine: >>> $res = \App\Customer::where('customer_name', 'like', "%frank%")->first(); => App\Customer {#736} >>> $res = \App\Customer::where('customer_

Shobo's avatar
Shobo's avatar Shobo9yrs agoEloquent
1
1
Last reply by Shobo 9yrs ago
Specs's avatar

Laravel scout paginate not working

I create about 300 posts using faker, and use laravel scout to search. Route::get('search', function () { $s = Request::get('s'); $posts = App\Post::search($s)->paginate(300); dd(count($posts)); //return view('search', compact('posts', 's')); }); It show that there a about 124 results. If I change 300 to 10, and use {{ $posts->appends(['s' => $s])->

Specs's avatar
Specs's avatar the94air9yrs agoLaravel
19
1
Last reply by the94air 9yrs ago
Istom1n's avatar

Eager loading can't orderBy

Hello! My data: Journal->hasMany(Article::class); Journal: - id - issue_number - title Article: - id - title - content - journal_id I want to sort my articles by journal issue_number, I use eager loading for it. $articles = Article::with(['journal' => function ($query) { $query->orderBy('issue_number', 'desc'); }])->get(); But it does not sort

Istom1n's avatar
Istom1n's avatar JarekTkacz...9yrs agoEloquent
3
1
Last reply by JarekTkaczyk 9yrs ago
mediaguru's avatar

My first Laravel site

I decided to revamp an old straight PHP site of mine and convert it to Laravel as a learning project: http://utahgolfguru.com/ A few of the key things I implemented and learned on this project are routes, blade templates, SASS/GULP, Laravel's MVC, controllers, database (MYSQL), bootstrap implementation, pagination (two types), authentication, mail (broken still), setting up a M

mediaguru's avatar
mediaguru's avatar mediaguru9yrs agoCode Review
4
1
Last reply by mediaguru 9yrs ago
SaeedPrez's avatar

Following convention ☺

When you try to follow the Laravel comment convention ☺ <?php return [ /* |-------------------------------------------------------------------------- | Results Per Page |-------------------------------------------------------------------------- | | This custom created value defines the number of results or object rows | that is displayed on ever

SaeedPrez's avatar
SaeedPrez's avatar SaeedPrez9yrs agoGeneral
2
1
Last reply by SaeedPrez 9yrs ago
chrislentz's avatar

How would you build a user feed with Laravel?

My site, http://filmfed.com, has a series of different features which members can interact with. For example, a member can add movie ratings and reviews, they can post blog comments, and they can add entries to the message board. On the users profile, I want to add add a feed that will collect the members interaction from all of the features above and combine them into a centra

chrislentz's avatar
chrislentz's avatar mwatson9yrs agoGeneral
1
1
Last reply by mwatson 9yrs ago
webtechnick's avatar

laracast about filtering by type

There was a great laracast about filtering a pagination by tags using ?type=beginner,intermediate,advanced in the URL. The lesson extracted out what we normally do in the controller with a series of if ($request->get('type')) { // do something } into it's own extendable class. I can't seem to find it in the library and my searching and googling. I'm building a simple blog li

webtechnick's avatar
webtechnick's avatar webtechnic...9yrs agoLaravel
0
1
bootstrapguru's avatar

Get latest messages and then reverse the order

Hi Guys, Hope everyone doing great. I am stuck with some query which seems to be easy but still I am not able to get it. I have Private chat system where I am trying to get latest messages from conversation with pagination. The problem is I can get latest 10 messages but unable to reverse them $thread->conversationMessages = $thread->messages()->latest()->with('user

bootstrapguru's avatar
bootstrapguru's avatar bootstrapg...9yrs agoEloquent
4
2
Last reply by bootstrapguru 9yrs ago
jeffcj's avatar

New project question. Laravel + ??JS

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

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

paginator link to page-3 instead of ?page=3

Hi, I can't find anything on this topic, while i think more people want this. Is there a pre made way to change the pagination to page-3 instead of ?page=3 so domain.com/products/page-3 Or do i have to make this myself in the router? Bart

BartHuis's avatar
BartHuis's avatar BartHuis9yrs agoLaravel
4
1
Last reply by BartHuis 9yrs ago
AucT's avatar

Eager Loading and views

I'm using eager loading for displaying 15 items (using pagination) with 2 many-to-many relations for each. It's working fine when I render them as json but when I use them in view it seems as it is ignoring them and gets it from database. As response time for json is <500ms and response time for view generated is 5-6seconds. How can I detect exactly what is going on? Is the

AucT's avatar
AucT's avatar AucT9yrs agoEloquent
2
1
Last reply by AucT 9yrs ago
Omranic's avatar

A week of Laravel #16 (25 July-01 August 2016) #Laravel #Changelog ✨

Updates: "Updates: laravel/framework [master, 5.2, 5.1], laravel/laravel [master, develop], laravel/docs [master, 5.2], laravel/homestead [master], laravel/lumen-framework [5.2], laravel/laravel.com [master], laravel/valet [master], Podcasts: The Laracasts Snippet, Laravel News Podcast, Laracasts, Larajobs" Published: August 01, 2016 laravel/framework master ef3

Omranic's avatar
Omranic's avatar Omranic9yrs agoLaravel
0
1
pSni02i4SRjEYztu4G1Y's avatar

Best way to display relationship when viewing an item

What's the best way to show relationships when viewing an item. I'm thinking to use ajax so I can click through the items. An item may have various related items and I may want to paginate through them all separately - e.g. be on page 2 of relationship Cars, but view page 3 of relatioship Dealers etc. Will the various pagination values in the request clash for each other if I

pSni02i4SRjEYztu4G1Y's avatar
pSni02i4SRjEYztu4G1Y's avatar pSni02i4SR...9yrs agoGeneral
0
1
chintan's avatar

LengthAwarePaginator gives keys along with data on page 2

I am using LengthAwarePaginator for pagination for custom array. First page gives the expected result however second page displays the data along with keys. Here's the code: $currentPage = LengthAwarePaginator::resolveCurrentPage(); $collection = new Collection($tempArray); $perPage = config('kh.api_record_display_limit'); $curren

chintan's avatar
chintan's avatar chintan9yrs agoLaravel
1
1
Last reply by chintan 9yrs ago
Omranic's avatar

A week of Laravel #15 (17-24 July 2016)

A week of Laravel #15 (17-24 July 2016) Updates: "Updates: laravel/framework [master, 5.2, 5.1], laravel/laravel [develop], laravel/installer [master], laravel/docs [master, 5.2], laravel/socialite [2.0], laravel/elixir [master], laravel/echo [master], Podcasts: The Laracasts Snippet, Laracasts, Larajobs" Published: July 24, 2016 laravel/framework master 9046e48

Omranic's avatar
Omranic's avatar Omranic9yrs agoLaravel
0
1
mistre83's avatar

Dependency Injection with relation

Hi to All! I've just started to study Laravel, and I have a simple application (post -> comments) and when i load the post X, I want to load comments too (in descending order, for example). If i write a router like this, i have "for free" the query on Post (by id) but i cant set the order (or pagination, for example): Route::get('/post/{id}', 'PostController@getPos

mistre83's avatar
mistre83's avatar mistre839yrs agoLaravel
4
1
Last reply by mistre83 9yrs ago
pSni02i4SRjEYztu4G1Y's avatar

Laravel 5 Crud Generator

I'm currently working on a pull request for this wonderful thing - and would like some testers! https://github.com/appzcoder/crud-generator/pull/108 I've so far added a --pagination option, to allow you to specify how many pages are shown in the index --indexes option, to allow you to define which fields are indexed (unique not currently supported, but will be soon) --required

pSni02i4SRjEYztu4G1Y's avatar
pSni02i4SRjEYztu4G1Y's avatar pSni02i4SR...9yrs agoLaravel
1
1
Last reply by pSni02i4SRjEYztu4G1Y 9yrs ago
GrahamMorbyDev's avatar

Search DB

I feel like i ask so much of this community ! And thank you to all for all your help on this road to learning this wonderful framework! But i have yet another question! So im trying to do searches on a database , simple search form that returns results to a view my controller namespace App\Http\Controllers; use Illuminate\Http\Request; use App\comics; use App\Http\Requests; c

GrahamMorbyDev's avatar
GrahamMorbyDev's avatar Lordgreyma...9yrs agoEloquent
10
1
Last reply by Lordgreymaul 9yrs ago
DNAngel's avatar

Infinite Scroll Repeated the Last Result

When I dd($allStatuses), it gave 9 items. My pagination is 3 items per page. When I scrolled my homepage to the bottom, it repeated the last 3 items once. I tried ?page=4, and it resulted none. When I tried ?page=3 and scrolled down, it repeated the same items in ?page=3 once. <script> $(document).ready(function() { $(window).scroll(fetchPosts); fun

DNAngel's avatar
DNAngel's avatar DNAngel9yrs agoLaravel
4
1
Last reply by DNAngel 9yrs ago
vals's avatar

Strange ->paginate(5) of relation // 1st Page = results 2nd Page no Results but SQL gets Results

Hello, i have a strange behavior with a pagination. The first call of the method gets me results. If i increment the page i dont get any results. Short the Structure: Group -> Kategorie -> Item If i run the build SQL's on the Database i get results. Build SQL first Page: select `itemidees`.*, `itemidee_groups_to_itemidees`.`itemidee_kategorie_id` as `pivot_itemidee_katego

vals's avatar
vals's avatar thefuzzy0n...9yrs agoEloquent
6
1
Last reply by thefuzzy0ne 9yrs ago
unlikenesses's avatar

Best practice for AJAX filters

I have a MySQL table, whose rows I display in a simple HTML grid. Let's say one field in this table is client. Above that I have a select tag, populated with these clients, and I have some jQuery that detects when the user selects something from this select element. The desired behaviour is to only show rows from my table whose client field matches the selected client. I can t

unlikenesses's avatar
unlikenesses's avatar XXX9yrs agoLaravel
5
1
Last reply by XXX 9yrs ago
marjanristicevic's avatar

Continuous page update

I use custom dto object and json monolog formatter to gather data application is constantly producing and want to display that on web panel. I know this could be done on a lot of ways but not sure which is the standard one. Should I use blade templates, or javascript templating, and for live update scheduled ajax, I need pagination also... As this is not rare use case I guess t

marjanristicevic's avatar
marjanristicevic's avatar Snapey9yrs agoLaravel
3
1
Last reply by Snapey 9yrs ago
DNAngel's avatar

Laravel 5: Trying to get property of non-object

Received this error ErrorException in b836960d8afb261ac0cd337b0ac052bd22c615b4.php line 2: Trying to get property of non-object (View: C:\wamp64\www\peepbox\resources\views\timeline\partials\friendtofriendstatusblock.blade.php) (View: C:\wamp64\www\peepbox\resources\views\timeline\partials\friendtofriendstatusblock.blade.php) HomeController.php class HomeController extends Con

DNAngel's avatar
DNAngel's avatar shaktijado...8yrs agoLaravel
20
1
Last reply by shaktijadon13 8yrs ago
Omranic's avatar

A week of Laravel #12 (26 June-03 July 2016)

Updates: laravel/framework [master, 5.2, 5.1], laravel/laravel [master, develop], laravel/docs [master, 5.2], laravel/homestead [master], laravel/cashier [6.0], laravel/elixir [master], laravel/valet [master], Podcasts: The Laravel Podcast, The Laracasts Snippet, Laravel News Podcast, Laracasts, Larajobs Published: July 03, 2016 laravel/framework master 0b4f798: add pipe

Omranic's avatar
Omranic's avatar Omranic9yrs agoLaravel
0
1
sarathiscookie's avatar

Vue js sorting is not working

Currently this is for listing customer data from database. Data is fetching using Laravel 5. At present data is fetching and listing properly. This page contains pagination, filter search and sorting functionality. My problem is sorting is not working properly. Could you please help me to sort out this issue? I am using Vue js version 1.0.25. I have found a sorting feature in v

sarathiscookie's avatar
sarathiscookie's avatar sarathisco...9yrs agoLaravel
0
1
mezie's avatar

How to go about this?

Please suggestions on how to go about this will be really appreciated. Am building a quiz app, where users can selected subject and based on the subject selected set of questions (one question per page) are displayed and upon completion and submit the user is graded based on the number of questions right and wrong. The questions are coming from a database table with 4 possible

mezie's avatar
mezie's avatar SaeedPrez9yrs agoGeneral
13
1
Last reply by SaeedPrez 9yrs ago
Khudadad's avatar

How to paginage the result of two Queries?

I have to collections of two queries and want to paginate in one pagination and don't know how to do this, any help. my queries: $expenses = DB::table('expenses') ->join('units','units.unit_id','=','expenses.unit_id') ->join('currencies','currencies.cur_id','=','expenses.currency_id') ->join('expense_type','expense_type.exp_type_id','=','ex

Khudadad's avatar
Khudadad's avatar Khudadad9yrs agoLaravel
0
1
marcel158's avatar

Paginator set html style

I have a FacebookPage model, that has many FacebookPosts, that has many FacebookUsers. To retrieve the FacebookUsers from a FacebookPage, I have the following method: public function users() { $this->load('posts.users'); $users = $this->posts->lists('users'); $collection = new Collection; foreach ($users as $postUser) { $coll

marcel158's avatar
marcel158's avatar marcel15810yrs agoLaravel
5
1
Last reply by marcel158 10yrs ago
danny620's avatar

Re-populate Form with Get Request

Hi, I cant find away to re-populate my form with get parameters I have a url like http://localhost:8000/courses?search=test&category=2&location=&lat=53.559003&lng=-2.077371&radius=2 and my form for the page is as you can see I'm using the "old('radius')" but its not picking up on the get parameter also the pagination is not keeping the parameters t

danny620's avatar
danny620's avatar spekkionu10yrs agoLaravel
3
1
Last reply by spekkionu 10yrs 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.