@extends('layouts/contentLayoutMaster') @section('title', 'Patient List') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')
@foreach($tp as $p) @endforeach
ID Name Nutritionists Doctor Lost Weight Current Weight Actions
{{ $p->id }} {{ $p->patient->full_name }} {{ $p->nutrition->name }} {{ $p->doctor->name }} {{ $p->patient->info['start_body_weight'] - $p->patient->info['current_body_weight'] }} {{ $p->patient->info['current_body_weight'] }}
@endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') @endsection