Sublime Text 2 in my tutorial video shows Laravel statement color well, the same code in my Aptana is just white(in a *.php file), it treats the code as plain HTML text, how can I set Aptana to show code with color(support Laravel)?
@layout('master')
@section('main')
@foreach($users as $user)
{{$user->email}}
@endforeach
@endsection
@section('nav')
<li>Details</li>
@parent
@endsection
All above codes are white except <li></li> tags, that is not the way I want.
I don't know how to set Aptana Studio 3, I need help.