@extends('dashboard_layout') @section('content')
@if(Session::has('submit-status'))

{{ Session::get('submit-status') }}

@endif

Coin Listing

@foreach($all_coin AS $coin) @endforeach
Image Coin Id Symbol Coin Name Full Name Status Action
@if($coin->type == 'old') @if($coin->image_url && file_exists(public_path() ."/upload/coin_image/".$coin->image_url)) {{$coin->name}} @elseif($coin->image_url && !file_exists(public_path() ."/upload/coin_image/".$coin->image_url)) {{$coin->name}} @else @endif @elseif($coin->type == 'new') @if($coin->image_url && file_exists(public_path() ."/upload/coin_image/".$coin->image_url)) {{$coin->name}} @elseif($coin->image_url && !file_exists(public_path() ."/upload/coin_image/".$coin->image_url)) {{$coin->name}} @else @endif @endif {{$coin->coin_id}} {{$coin->name}} {{$coin->coin_name}} {{$coin->full_name}} @if($coin->status == '1') Active @else Inactive @endif
{!! $all_coin->links('') !!}
@endsection