@extends('layouts.app')
@section('title', 'Report')
@section('content')

    <section class="content">
			<div class="row">			  
				

<div class="col-lg-12 col-12">
    <div class="box">
        
        <div class="box-body">  
            <h4 class="box-title text-info mb-0"><i class="fa fa-edit me-15"></i>Report By Number</h4>
            <a href="{{url('/lead')}}" type="button" style="float:right" class="waves-effect waves-light btn btn-rounded btn-primary btn-bitbucket btn-sm mb-5"><i class="fa fa-eye fa-sx"></i>Lead</a>

            <hr class="my-15">
                        <div class="table-responsive">
                        <table id="tickets"class="table mt-0 table-hover no-wrap" data-page-size="10">
                            <thead>
                            <tr>
                            <th>#</th>
                               
                               
                               <th>Extension</th>
                               <th>Campaign</th>

                               <th>Route</th>
                               <th>Type</th>
                               <th>Number</th>
                              <th>Duration</th>
                               <th>Start Time</th>
                               <th>End Time</th>
                             
                              <th>Recording</th>

                                    </tr>
                            </thead>
                            <tbody>
                            <?php 


                               
foreach ($report as $key=>$value){ ?>
      <tr>
                                        <td><?php echo ++$key; ?></td>
                                        <td><?php echo $value->extension;?></td>
                                        <td><?php echo $value->campaign_id;?></td>

                                        <td><?php echo $value->route;?></td>
                                        <td><?php echo $value->type;?></td>
                                        
                                        <td><?php echo $value->number;?></td>
                                        <td><?php echo $value->duration;?></td>
                                        <td><?php echo $value->start_time;?></td>
                                        <td><?php echo $value->end_time;?></td>
                                        <td><audio controls preload ='none'><source src="<?php echo $value->call_recording;?>" type='audio/wav'></audio></td>
                                  
                                    </tr>
                                <?php } ?>
                           </tbody>
                                        </table>
                   
                        </div>
                </div>
                
            </div>
        </div>

        </div>


</section>


@endsection



