Laravel blade "old input or default variable"?

You can use:

old($key, $defaultValue)

See more: https://github.com/laravel/framework/blob/87df108bb487714d205002aba7e7317533976a8d/src/Illuminate/Foundation/helpers.php#L541-L553


or is a comparison operator in PHP, so your code is evaluating to true, or 1. What you want is a ternary if statement.

As mentioned, or can be used in blade as shorthand for a ternary if statement.

But you can (and should) just pass the default value as the second argument to the function, like so:

value="{{ old('salary_' . $employee->id, 'Default') }}"

As described in the Laravel doc: "If you are displaying old input within a Blade template, it is more convenient to use the old helper:". So if you need add/edit data form (when you need to use edit form for add and edit in edit mode you need to use loaded data from model (database)) to show values from the model (through controller) you can use following:

name="some_value" value="{{ $some_value or old('some_value', $the_value) }}"

where is "some_value_from_model" variable name in view array. In this case it should be at first $some_value will be used to set in the "value" and, if no, it will try to use old (value from request from name "some_value") and if not old then '' should be used.

Thanks WoodyDRN for comment.


You can use the code (for PHP 7):

{{ old('field_name') ?? $model->field_name ?? 'default' }}

For checkbox checked attribute use the code (if default value is false):

{{ (old() ? old('field_name', false) : $model->field_name ?? false) ? 'checked' : '' }}

Construction {{ $something or 'default'}} works only for variables