How to make Aptana render Laravel colors in .php files (Laravel support)?

Sublime Text 2 in my tutorial video shows Laravel color is correct, the same code in my Aptana is just white (in * .php file), it treats the code as normal HTML text, how can I configure Aptana to show the code with color ( Laravel support)?

@layout('master')
@section('main')
    @foreach($users as $user)
        {{$user->email}}
    @endforeach
@endsection
@section('nav')
    <li>Details</li>
    @parent
@endsection

      

All of the above codes are white except for the <li> </li> tags, this is not how I want it.

I don't know how to install Aptana Studio 3, I need help.

+3


source to share


1 answer


Sublime Text 2 provides a package for Laravel Blade templates - which means it "understands" the code and can colorize it correctly.



This parameter does not exist in Aptana - so you cannot do this.

+1


source







All Articles