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

Ip : {{ $ip->id }}

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

ID{{ $ip->id }}
Branch Name {{ $ip->branch_name }}
Tax Id {{ $ip->tax_id }}
Site {{ $ip->site }}
Address {{ $ip->address }}
Ip Address {{ $ip->ip_address }}
Contact {{ $ip->contact }}
@endsection