@extends('admin.layouts.main') @section('title','Country List') @section('content') @if(Session::has('message'))
{{Session::get('message')}}
@endif
@foreach($Country as $Countrys) @endforeach
Name Edit Delete
{{$Countrys->name}} {!! Form::open(['method'=>'DELETE','route'=>['country.destroy',$Countrys->id]]) !!} {!! Form::submit('DELETE',$attribute=['class'=>'btn btn-danger']); !!} {!! Form::close() !!}
@endsection