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

{{ $recipe->Name }}

Please, click here to start talking to me :)

Ingredients


@foreach($ingredient as $key=>$i)

— {{substr($i,0,25)}} ...

@endforeach

Steps


@foreach($step as $key=>$s) {{$key+1 }}) {{substr($s,0,25)}} ...
@endforeach
@foreach($step as $key=>$s)

{{$key+1 }}) {{$s}}



@endforeach
@endsection