@extends('layout.default') @section('title', $L('Locations')) @section('activeNav', 'locations') @section('viewJsName', 'locations') @section('content')

@yield('title')  {{ $L('Add') }}

@foreach($locations as $location) @endforeach
{{ $L('Name') }} {{ $L('Description') }}
{{ $location->name }} {{ $location->description }}
@stop