@extends('admin.layouts.master') @section('title') currencies @endsection @section('css') @endsection @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach($data as $row) @include('admin.currencies.edit') @include('admin.currencies.deleted') @endforeach
name type country rate Status Action
{{ $row->name() }} {{ $row->type }} {{ $row->country }} {{ $row->rate }}
is_active == '1' ? 'checked' : ''}} onchange="toggleStatus({{$row->id}}, this.checked ? '1' : '0')">
{{-- --}} {{-- --}} {{-- --}}
{{$data->links()}}
@include('admin.currencies.create') @endsection @section('js') @endsection