i have a question related to Laravel 4 Starter Site
The following is one of the view page.
@extends('site.layouts.default')
{{-- Web site Title --}}
@section('title')
{{{ Lang::get('site.contact_us') }}} ::
@stop
{{-- Content --}}
@section('content')
{{{ Lang::get('site.contact_us') }}}
@stop
In the site.layouts.default template, Jquery is included. How could i include other javascript like
{{ HTML::script('http://cdn.datatables.net/1.10.0/js/jquery.dataTables.js') }}
into the view file? It should included after the jquery library.
Thanks in advance!