@extends('admin::layouts.master') @section('title') @lang('translation.Countries') @endsection @section('content') @component('admin::components.breadcrumb') @slot('li_1') Dashboard @endslot @slot('title') Countries @endslot @endcomponent @if ($text = Session::get('success')) @elseif ($text = Session::get('error')) @endif
@foreach($countries as $index => $value) @endforeach
# Name Code Currency Currency Code Flag Show Status Action
{{ $index + 1 }} {{ $value->name }} {{ $value->code }} {{ $value->currency }} {{ $value->currency_code }} @if ($value->show == 1) Yes @elseNo @endif @if ($value->status == 1) Active @elseInactive @endif
@endsection