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

List of your Stocks

The list of all of your stocks:
@foreach($stocks as $key => $stock) @endforeach
ID Company Market Type Price Last Update actions New Stock
{{ $stock->id }} {{ $stock->company->title }} {{ $stock->market->title }} {{ $stock->type }} {{ number_format($stock->price) }} € {{ $stock->updated_at }} {{ Form::open(array('url' => 'stocks/' . $stock->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 stock?')")) }} {{ Form::close() }} View Edit
@endsection