Add Nomad PHP lightning talk
This commit is contained in:
parent
33bbe17e8c
commit
dab9a0e9b3
|
@ -20,7 +20,11 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<small class="db black-70">
|
<small class="db black-70">
|
||||||
{{ row.event.type|default('Talk') }}
|
{% if row.talk.type %}
|
||||||
|
{{ row.talk.type }}
|
||||||
|
{% else %}
|
||||||
|
{{ row.event.type|default('Talk') }}
|
||||||
|
{% endif %}
|
||||||
</small>
|
</small>
|
||||||
</td>
|
</td>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
11
source/_talks/using-laravel-collections-outside-laravel.md
Normal file
11
source/_talks/using-laravel-collections-outside-laravel.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
---
|
||||||
|
title: Using Laravel Collections outside Laravel
|
||||||
|
slides:
|
||||||
|
url: ~
|
||||||
|
embed: ~
|
||||||
|
tags: [nomad-php, lightning-talk, laravel, collections]
|
||||||
|
type: Lightning talk
|
||||||
|
events:
|
||||||
|
- { event: nomad-php, date: '2017-12-21', 'time': 19:00 CET }
|
||||||
|
---
|
||||||
|
Laravel Collections are a powerful object-orientated way of interacting with PHP arrays, but did you know that they can be used outside of Laravel, in any PHP project? This short talk shows how we can use Composer to include Laravel Collections within a non-Laravel project and put them to use within your own code.
|
Loading…
Reference in a new issue