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