@extends('front.template') @section('main')

{{ $compte->nom }}


@foreach ($transactions as $transaction) @endforeach
Solde @if($compte->solde < 0) {{ $compte->solde }} € @endif @if($compte->solde > 0) {{ $compte->solde }} € @endif
Contrat Débit Crédit Date Actions
{{ $transaction->nom }} @if($transaction->montant < 0) {{ $transaction->montant }} EUR @endif @if($transaction->montant > 0) {{ $transaction->montant }} EUR @endif {{ $transaction->date_realisation }}
{!! $links !!}
@stop