@extends('layouts/default') {{-- Page title --}} @section('title') @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')

Location

@if(Session::has('message'))

{{ Session::get('message') }}

@endif

Location List

@foreach($locations as $location) @endforeach @if (count($locations) === 0) @endif
Location Code Location Name Customer Name
{{ $location->code }} {{($location->is_default==1)?'(Default)':''}} {{ $location->name }} {{ $location->master_name }}

No matching records found
@include('layouts.right_sidebar')
@stop {{-- page level scripts --}} @section('footer_scripts') @stop