Search

Welcome to Laravel School

Hello Everyone. This is Laravel School website where we will write the technical blog especially PHP and Laravel related post. Normally we write code every day and issues encounter during progra...

Laravel delete files from Public Folder

If you want to delete a file from public folder in Laravel, surely you can use PHP's `unlink()` method to remove that. Besides `unlink()`, you can remove file by laravel way, by using the `File::d...

Let's do Laravel code refactoring

Sometimes, we have some code that we can do refactor more. In this post I will show you how to do refactor a traditional code and make it more optimized. Let's imagine that, as an author, you have...

Laravel PHP artisan Route List command

Ideally, the ```php artisan route:list``` will display display the domain, method, URI, name, action and middleware for the routes it includes in the generated table. Now, what if I want to show a...

How to upload laravel project in cPanel

If you use cPanel to host your [Laravel](https://www.laravel.com) application, you might be confusing at first. It's because of the directory structure of Laravel and cPanel are bit different. Today,...

Laravel Testing: Starting with Laravel feature Testing

Although, there is a lot of controversy for testing in development, however, I would prefer to do follow testing. The advantage of testing laravel application is better than without testing. So, I wil...

How to use Laravel Transform

You will get an example in Laravel documentation that how to use **transform()** in Laravel. You might see example code like that- ``` php $collection = collect([1, 2, 3, 4, 5]); $collection->t...

The Standard Approach to Validate Laravel Form Request

Laravel is one of the best choices for PHP developer since it gives so much flexibility to the developer. However, the form validation is one of the crucial parts for web-based application and API. La...

Deep Diving into Laravel Subquery

In this tutorial, we will learn how to use Laravel Subquery in real life example. I have inspired to write about this article by reading [Jonathan Reinink](https://twitter.com/reinink) [post](https://...

An Introduction to Laravel Policy

If you heard about Laravel Policy and still not yet use that, this introduction to Laravel Policy post is for you then. In this tutorial, I will write a real-life tutorial that, how to use Laravel Pol...

  • 1 / 8