@extends('layouts.dashboard-app') @section('main-content')

Hello, Welcome {{auth()->user()->name}}

Emirates

Add New Emirates
@foreach ($emirate as $item) @endforeach
Name Status Action
{{$item->name}} {{$item->status}} {{ Form::open([ 'method' => 'delete', 'route' => [ 'emirate.destroy', $item->id ] ]) }} {{ Form::submit('Delete', ['class' => 'btn btn-danger']) }} {{ Form::close() }}
@endsection {{-- @@section('name') --}} {{-- @endsection --}}