@foreach($companies as $company) @endforeach
Name Region Country City Action
{!! $company->name !!} {!! $company->region !!} {!! $company->country !!} {!! $company->city !!} {!! Form::open(['route' => ['companies.destroy', $company->id], 'method' => 'delete']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
{!! Form::close() !!}