@extends('layouts.app') @section('content')
View Market
Market Title:
{{ $market->title }}
Description:
{{ $market->description }}

{{ $market->title }}

The list of all of your stocks:
@foreach($market->stocks as $key => $stock) @endforeach
ID Company Market Type Price Last Update
{{ $stock->id }} {{ $stock->company->title }} {{ $stock->market->title }} {{ $stock->type }} {{ number_format($stock->price) }} € {{ $stock->updated_at }}
@endsection