@extends('layouts.master') @section('page-title') Manage company VIP accounts @endsection @section('content')
@foreach($accounts as $account) @endforeach
Name Sales
{{ $account->contact->firstName }} {{ $account->contact->lastName }} @currency($account->salesTotal) {{ $currency->symbol }} edit
{!! csrf_field() !!} {!! method_field('DELETE') !!}
@endsection