@extends('layouts.master') @section('title', 'Treasures | Alboosh - Timeless authenticity, born of the desert') @section('title-topbar', __('basic.all treasuries')) @section('css') @endsection @section('fixedcontent') @if (Session::has('success'))

Sent Successfully

{{ Session::get('success') }}

@endif @endsection @section('content')
{{ __('basic.all treasuries') }}
@foreach ($acc as $item) @endforeach
{{ __('basic.name') }} {{ __('basic.current balance') }} {{ __('basic.status') }} {{ __('basic.handle') }}
@if ($item->type == 1) @php $type = __('basic.treasury'); $icon = "fas fa-wallet"; $icon_color = "main-color"; @endphp @else @php $type = __('basic.bank'); $icon = "fas fa-university"; $icon_color = "text-green"; @endphp @endif

{{ $item->name }}

{{ $type }}

{{ $item->balance }} {{ $system_currency->code }}
@if($item->main_account == 1)
{{ __('basic.main') }}
@else
{{ __('basic.active') }}
@endif
@if($item->main_account == 0) @endif @role('Super-admin|Accountant-manager') @endrole
@endsection @section('js') @endsection