@extends('admin.account.show') @section('content')
@foreach ($user->receipe as $res) @endforeach
Recipe ID Title Protein Leucine Date Added Date Modified Actions
{{$res->id ?? '-'}}
@if ($res->is_fav > 0 ) @endif {{$res->title ?? '-'}}
{{$res->protein ?? '-'}} {{$res->leucine ?? '-'}} {{$res->created_at->format('Y-m-d') ?? '-'}} {{$res->updated_at->format('Y-m-d') ?? '-'}}
@endsection