@extends('master') @section('title', 'show currencies') @push('head') @endpush @section('content')
@foreach ($banks as $bank) @endforeach
# Arabic Name English Name Purchase Price Selling Price
{{$bank->id}} {{$bank->name_ar}} {{$bank->name_en}} {{$bank->pivot->purchasing_price}} {{$bank->pivot->selling_price}}
@endsection