@extends('layouts.app') @section('content')

Store : {{ $store->id }}

{!! Form::open([ 'method'=>'DELETE', 'url' => ['admin/store', $store->id], 'style' => 'display:inline' ]) !!} {!! Form::button(' Delete', array( 'type' => 'submit', 'class' => 'btn red btn-xs', 'title' => 'Delete Store', 'onclick'=>'return confirm("Confirm delete?")' ))!!} {!! Form::close() !!}

ID{{ $store->id }}
Name {{ $store->name }}
Status {!! $store->status == 0 ? 'Inactive' : 'Active' !!}
@endsection