@extends('layouts.mypage') @section('page-header')

{{$story->user->firstname}} {{$story->user->lastname}} Story

@endsection @section('content') @if (Auth::check())
Write Form
@endif @foreach($stories as $story)
image
{{ $story->user->firstname }} {{ $story->user->lastname }} {{ substr($story->created_at, 11, 5) }} - {{ str_replace('-', '.', substr($story->created_at, 0, 10)) }}
@if($story->story_img)

@endif

{!! nl2br($story->comment) !!}

@endforeach @endsection @section('script') @include('script.comment') @endsection