@extends('layouts.backend') @section('content')
@include('admin.sidebar')
experience {{ $experience->id }}
{!! Form::open([ 'method'=>'DELETE', 'url' => ['tour/experience', $experience->id], 'style' => 'display:inline' ]) !!} {!! Form::button(' Delete', array( 'type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'title' => 'Delete experience', 'onclick'=>'return confirm("Confirm delete?")' ))!!} {!! Form::close() !!}

ID{{ $experience->id }}
Category Id {{ $experience->category_id }}
Topic Id {{ $experience->topic_id }}
Location Id {{ $experience->location_id }}
@endsection