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

List of your Companies

The list of all of your companies:
@foreach($companies as $key => $company) @endforeach
ID title address Telephone Url actions New Company
{{ $company->id }} {{ $company->title }} {{ $company->office_address }} {{ $company->office_tele }} {{ $company->web_url }} {{ Form::open(array('url' => 'companies/' . $company->id, 'class' => 'pull-right')) }} {{ Form::hidden('_method', 'DELETE') }} {{ Form::submit('Delete', array('class' => 'btn m-btn--square btn-danger', 'onclick' => "return confirm('Are you sure you want to remove?')")) }} {{ Form::close() }} View Edit
@endsection