@extends('layouts.admin') @section('title', 'Daily Revenue Report') @section('content-header', 'Daily Revenue Report') @section('content-actions')
@csrf
@endsection @section('content')
@foreach ($data_collection as $key => $value)

RM {{ $value['Total_Sales'] }}

Total Sales

({{ $value['BID'] }}) {{ $value['Description'] }}
@endforeach
@endsection