MALL DEPOK TOWN SQUARE Lantai 2 Blok SS1 No. 5-7 Jl. Margonda Raya No 1…

7 Laravel Tips You Should Know

DISKUSI

PENAWARAN

KERJASAMA

LAPORAN

#1 The get ( ) method can accept an array of columns to return

#1 The get ( ) method can accept an array of columns to return

Did you know that the get() method can accept an array with the columns which should be returned? The same thing also works with the method all ( ).

#2 Allow access to specific IP addresses when your application is in maintenance mode

#2 Allow access to specific IP addresses when your application is in maintenance mode

Laravel allows you to put your application in maintenance mode using the command artisan down. While in maintenance, the application will not be accessible by the users. But did you know that you can allow access to specific IP addresses?

#3 Combined where conditions

#3 Combined where conditions

Using combined where conditions is a common case for almost all applications. Did you know there is a different way to write them?

#4 Getting the ID of the authenticated user

#4 Getting the ID of the authenticated user

Very often I see developers using Auth::user()->id to retrieve the id of the authenticated user. There is a better way.

# 5 Faker optional ( )

#5 Faker optional ( )

Sometimes, in Weap’s automated tests a backup record should be not completed. For such cases, Faker has the optional() method.

#6 Unsigned columns in the migrations

#6 Unsigned columns in the migrations

When you have a relation between two tables, the column must be unsigned. To make the column unsigned, the unsigned() method is used. But there is a second way to achieve the same result.

#7 Easier dd()

#7 Easier dd()

If you need to dd() the results of a query, there are two ways