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

Status

@if(Session::has('flash_message'))

{{ Session::get('flash_message') }}

@endif
Leaves Records
@foreach($type as $type) @endforeach
Country Leave Type Days/Year Remark
{{$type->country}} {{$type->leave_type}} {{$type->days_year}} {{$type->remarks}} {!! Form::open([ 'method'=>'DELETE', 'url' => ['/admin/absencetype', $type->id], 'style' => 'display:inline' ]) !!} {!! Form::button('', array( 'type' => 'submit', 'class' => 'btn red btn-xs', 'title' => 'Delete Name', 'onclick'=>'return confirm("Confirm delete?")' )) !!} {!! Form::close() !!}
@endsection