@extends('layouts.app') @section('title', 'Store Balance') @section('content')

Store Balance

{!! Form::text('filter_date', request()->get('date') ? @format_date(request()->get('date')) : @format_date('now'), ['class' => 'form-control', 'readonly', 'required', 'id' => 'filter_date']); !!}
@can('account.store-balance.view')
# Location Balance Action
1 {{ $select_location ? $select_location : 'All Locations'}} {{ $current_balance != 0 ? @num_format($current_balance) : '0.00' }} @lang("messages.view")
@endcan
@endsection @section('javascript') @endsection