@extends('layouts.dashboard') @section('title',trans('layout.tax_title')) @section('css') @endsection @section('main-content')

{{trans('layout.tax')}}

{{trans('layout.list')}}

@if($taxes) @foreach($taxes as $tax) @endforeach @endif
{{trans('layout.title')}} {{trans('layout.amount')}} {{trans('layout.type')}} {{trans('layout.status')}} {{trans('layout.action')}}
{{$tax->title}} {{$tax->amount}} {{$tax->type}} @if($tax->status=='active') {{trans('layout.active')}} @elseif($tax->status=='inactive') {{trans('layout.inactive')}} @endif
@endsection @section('js') @endsection