@extends('backend.layouts.app') @section('content') @if(Session::has('message'))
{{ Session::get('message')}}
@endif @if(Session::has('error'))
{{ Session::get('error')}}
@endif @if (count($errors) > 0)
@endif {!! Html::script('expand_theme/js/jquery.validate.min.js') !!}

@lang('messages.currency')

@if(count($currencys) == 0)

@lang('messages.no_data_found')

@else @foreach($currencys as $currency) @endforeach
@lang('messages.s_no') @lang('messages.currency_code') @lang('messages.currency_symbol') @lang('messages.status') @lang('messages.action')
1 {{$currency->currency_code }} {{$currency->currency_symbol }} @lang('messages.inactive')
@endif
@stop