/
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); @endphp @foreach($details as $detail) <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">{{keyFromSlug($detail->warehouse,'_')}}</h3> </div> <div class="panel-body"> @php $keys = array_keys((array)$detail); $count = 0; @endphp @foreach($keys as $key) @if($count > 0) @if(count($detail->$key) > 0) <div class="panel panel-success"> <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 $r_count = 0; @endphp @foreach($detail->$key as $report) @if($r_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 $r_count++; @endphp @endif @endforeach </thead> <tbody> @foreach($detail->$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 @endif @php $count++; @endphp @endforeach </div> </div> @endforeach </body> </html>