JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "index.blade.php"

Full Path: /var/www/laravel_filter/Modules/Currency/resources/views/index.blade.php
File size: 4.16 KB
MIME-type: text/html
Charset: utf-8

@extends('admin.master_layout')
@section('title')
<title>{{ __('Currency List') }}</title>
@endsection
@section('admin-content')
      <div class="main-content">
        <section class="section">
          <div class="section-header">
            <h1>{{ __('Currency List') }}</h1>
          </div>
          <div class="section-body">
            <a href="{{ route('admin.currency.create') }}" class="btn btn-primary"><i class="fas fa-plus"></i> {{ __('admin.Add New') }}</a>
            <div class="row mt-4">
                <div class="col">
                  <div class="card">
                    <div class="card-body">
                      <div class="table-responsive table-invoice">
                        <table class="table table-striped" id="dataTable">
                            <thead>
                                <tr>
                                    <th>{{ __('SN') }}</th>
                                    <th>{{ __('Currency') }}</th>
                                    <th>{{ __('Country Code') }}</th>
                                    <th>{{ __('Currency Code') }}</th>
                                    <th>{{ __('Currency Icon') }}</th>
                                    <th>{{ __('Currency Rate') }}</th>
                                    <th>{{ __('Default') }}</th>
                                    <th>{{ __('Status') }}</th>
                                    <th>{{ __('Action') }}</th>
                                  </tr>
                            </thead>
                            <tbody>
                                @foreach ($currencies as $index => $currency)
                                    <tr>
                                        <td>{{ ++$index }}</td>
                                        <td>{{ $currency->currency_name }}</td>
                                        <td>{{ $currency->country_code }}</td>
                                        <td>{{ $currency->currency_code }}</td>
                                        <td>{{ $currency->currency_icon }}</td>
                                        <td>{{ $currency->currency_rate }}</td>

                                        <td>
                                            @if ($currency->is_default == 'yes')
                                                <span class="badge badge-success">{{ __('Default') }}</span>
                                            @else
                                            <span class="badge badge-danger">{{ __('No') }}</span>
                                            @endif
                                        </td>

                                        <td>
                                            @if ($currency->status == 'active')
                                                <span class="badge badge-success">{{ __('admin.Active') }}</span>
                                            @else
                                            <span class="badge badge-danger">{{ __('admin.In-active') }}</span>
                                            @endif
                                        </td>
                                        <td>
                                            <a href="{{ route('admin.currency.edit',$currency->id) }}" class="btn btn-primary btn-sm"><i class="fa fa-edit" aria-hidden="true"></i></a>

                                            @if ($currency->id != 1)
                                                <a href="javascript:;" data-toggle="modal" data-target="#deleteModal" class="btn btn-danger btn-sm" onclick="deleteData({{ $currency->id }})" disabled><i class="fa fa-trash" aria-hidden="true"></i></a>
                                            @endif
                                        </td>
                                    </tr>
                                  @endforeach
                            </tbody>
                        </table>
                      </div>
                    </div>
                  </div>
                </div>
          </div>
        </section>
      </div>

    <script>
        "use strict";
        function deleteData(id){
            $("#deleteForm").attr("action",'{{ url("admin/currency/") }}'+"/"+id)
        }
    </script>
@endsection