@extends('layouts.layout') @section('title', 'All Currency') @section('content')

@if(Session::has('success'))
Success : {{ Session::get('success') }}
@endif
All Currency
Add New Currency
@php $i = 1; @endphp @foreach($currency as $curr) @endforeach
SL# Currency Rate Action
{{ $i++ }} {{ $curr->name}} {{ $curr->rate}} {{ $curr->name}} = 1 USD Edit {!! Form::open(['route'=>['currency.destroy',$curr->id],'method'=>'DELETE']) !!} {!! Form::submit('Delete',['class'=>'btn btn-danger pull-right', 'onclick'=>'return confirm("Are You Sure..!");', 'style'=>'margin-top: -35px']) !!} {!! Form::close() !!}
{{ $currency->links() }}
@endsection