This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Illuminate\Support\Collection; | |
/* | |
* Get the first item. Performs callback if the item was not found. | |
* | |
* @return mixed | |
*/ | |
Collection::macro('firstOr', function (callable $callback) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[ | |
/** | |
* The accessors to append to the model's array form. | |
* | |
* @var array | |
*/ | |
protected \$appends = [ | |
'${1}', | |
]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="<?php $oddEven = ($oddEven=='odd') ? 'even':'odd'; echo $oddEven; ?>"> | |
</div> |