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

Account Master

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

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

@endif @if(Session::has('error'))

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

@endif

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

{{$heading}} Address List


@foreach($addresslist as $row) @endforeach
Account ID Account Name TRN No Address Phone Fax Email
{{$row->account_id}} {{$row->master_name}} {{$row->vat_no}} {{$row->address}} {{$row->phone}} {{$row->fax}} {{$row->email}}
@include('layouts.right_sidebar')
@stop {{-- page level scripts --}} @section('footer_scripts') @stop