@extends('admin.template') @section('title') Networks List @endsection @section('active-link') Networks List @endsection @section('css') {{----}} {{-- --}} @endsection @section('content')
@if(Session::has('message'))
× {{ Session::get('message') }}
@endif
Networks List
Add New Network
@php $i = 1; @endphp @foreach($networks as $data) @php $i++; @endphp @endforeach
# Network Title Network Symbol Currency Status Action
{{$i}} {{$data->name}} {{$data->symbol}} {{strtoupper($data->currency)}} @if($data->status == 1) Active @else Disabled @endif
{{ csrf_field() }} @method('DELETE')
{{--
--}} @endsection('content') @section('js') {{-- --}} {{-- --}} @endsection('js')