Showing 10 of 1,322 results.

Duplicate Condition Expressions | The Validate Command

Class : DuplicateConditionExpressionsValidator The duplicate condition expressions validator may be used to detect trivial identical expressions. The following template: 1 @if ( $ this == ' that ' ) 2 3 @elseif ( $ this == ' that ' ) 4 5 @else 6 7...

No Directive Arguments | The Validate Command

Class : NoArgumentsValidator The no directive arguments validator emits a validation error when directive's that should not contain arguments have arguments in the template. The following template: 1 @ endphp ( $ args ) will emit the following...

Required Directive Arguments | The Validate Command

Class : RequiredArgumentsValidator The required directive arguments validator emits a validation error when a directive that should contain arguments does not have any arguments in the template. The following template: 1 @extends will emit the...

Laravel Artisan Migration Command: The migrate:status Command

The migrate:status command can be used to check the status of each migration. The command will output a table that lists each migration and an indicator of whether or not the migration has been ran. The migrate:status command provides a few...