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

Ip : {{ $mobile->id }}

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

ID{{ $mobile->id }}
UserName {{ $mobile->username }}
Mobile No {{ $mobile->mobile_no }}
Model Name {{ $mobile->model_name }}
Imei {{ $mobile->imei }}
@endsection