@extends('layouts.squelette') @section('css_header') @endsection @section('titre') {{ __("Gestion des TVA") }} @endsection @section('titre_page') {{ __("Gestion des TVA") }} @endsection @section('panel_boutons') @include('layouts.partials.panelboutons', ['btn_ajout' => 'modale', 'btn_imprim'=> false, 'btn_export'=> false]) @endsection @section('contenu')
@foreach ($tvas as $tva) @endForeach
{{ __("Actif") }} {{ __("Pays") }} {{ __("Nom") }} {{ __("Valeur") }} {{ __("Autoliquidation") }} {{ __("Exonération") }} {{ __("Compte achats") }} {{ __("Compte ventes") }}
@if ($tva->tva_active == 1) @endif {{ $tva->country }} {{ $tva->tva_name }} {{ $tva->tva_value }} @if ($tva->tva_autoliquidation == 1) @endif @if ($tva->tva_exoneration == 1) @endif {{ $tva->tva_comCompAchats }} {{ $tva->tva_comCompVentes }}
@endsection @section('js_footer') @endsection @section('modale') @include('modales.delete_standard') @endsection