@extends('layouts.master') @section('page-title') Manage accounts @endsection @section('content')
@foreach($accounts->sortBy('name') as $account) @endforeach
Name in out
{{ $account->name }} @if($account->totalMovementsIn > 0) @currency($account->totalMovementsIn) {{ $currency->symbol }} @endif @if($account->totalMovementsOut > 0) @currency($account->totalMovementsOut) {{ $currency->symbol }} @endif edit
{!! csrf_field() !!} {!! method_field('DELETE') !!}
@endsection