@extends('admin.layouts.app') @section('content')
ID | Country Name | Status | Action |
---|---|---|---|
{{$country->id }} | {{$country->name}} | @if($country->status == 1) Active @else Inactive @endif |
{{-- Form::open(['route' => ['country.destroy', $country->id], 'method' => 'delete']) }}
{{ Form::button('', [ 'type' => 'submit', 'class' => 'btn btn-dim btn-danger']) }}
{{-- id) }}'> --}}
{{-- Form::close() ---}}
|