/
home
/
sjslayjy
/
public_html
/
mosaram
/
resources
/
views
/
dashboard
/
report
/
Upload File
HOME
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <!-- Latest compiled and minified CSS & JS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> <script src="//code.jquery.com/jquery.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script> </head> <body> @php $details = json_decode($daily_expense_report->details); $keys = array_keys((array)$details); @endphp @foreach($keys as $key) @if($key != "total") <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">{{keyFromSlug($key,'_')}}</h3> </div> <div class="panel-body"> <div class="table-responsive"> <table class="table table-hover"> <thead> @php $count = 0; @endphp @foreach($details->$key as $report) @if($count == 0) @php $report_keys = array_keys((array)$report); @endphp <tr> @foreach($report_keys as $report_key) <th>{{keyFromSlug($report_key,'_')}}</th> @endforeach </tr> @php $count++; @endphp @endif @endforeach </thead> <tbody> @foreach($details->$key as $report) @php $report_keys = array_keys((array)$report); @endphp <tr> @foreach($report_keys as $report_key) <td>{{$report->$report_key}}</td> @endforeach </tr> @endforeach </tbody> </table> </div> </div> </div> @endif @endforeach @php $details = json_decode($daily_expense_report->details); $total_keys = array_keys((array)$details->total); @endphp <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">Total</h3> </div> <div class="panel-body"> <div class="table-responsive"> <table class="table table-hover"> <thead> @foreach($total_keys as $total_key) <tr> <th>{{keyFromSlug($total_key,'_')}}</th> <th>{{$details->total->$total_key}}</th> </tr> @endforeach </thead> </table> </div> </div> </div> </body> </html>