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

List of your Markets

The list of all of your markets:
@foreach($markets as $key => $market) @endforeach
ID title actions New Market
{{ $market->id }} {{ $market->title }} {{ Form::open(array('url' => 'markets/' . $market->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 this market?')")) }} {{ Form::close() }} View Edit
@endsection