1
I’ve installed several Plugins of Atom to enable resources to recognize syntax of PHP in my project, but I didn’t succeed, what is my goal? And when I type the code it can complete, see the example below;
@foreach($courses as $course)
<div class="col-md-3">
<h3>{{ $course->name }}</h3>
<p>{{ $course->description }}</p>
</div>
@endforeach
In the example, with the plugin installed it was for when I type @forea... and he complete.
I just need to know which plugin to install in the Atom Editor.
With the suggestions he’s given me he’s like this, but it’s not the way I need it;
When typing the @fore.. he wasn’t supposed to have put the <?php ?>
@<?php foreach ($variable as $key => $value): ?>
<?php endforeach; ?>
I use very little php, and use the
language-php
, but he can’t identify the classes to suggest in the autocomplete, the rest I have nothing to complain– Christian Beregula
If this is the Blade templating engine of Laravel, which is what it seems to me, there is a plugin for this in Atom which is the
language-blade
that works well– Isac
I updated my post, could you take a look please.
– wladyband