Please help check the code to see where there is error as I am not a coder but just using the application from another developer
            <div class="bs-example widget-shadow table-responsive" data-example-id="hoverable-table"> 
                <table class="table table-hover"> 
                    <thead> 
                        <tr> 
                            <th>ID</th> 
                            <th>Client name</th>
                            <th>Amount</th>
                            <th>Payment mode</th>
                            <th>Receiver's email</th>
                            <th>Status</th> 
                            <th>Date created</th>
                            <th>Option</th>
                        </tr> 
                    </thead> 
                    <tbody> 
                        @foreach($withdrawals as $deposit)
                        <tr> 
                            <th scope="row">{{$deposit->id}}</th>
                            <td>{{$deposit->duser->name}}</td>
                             <td>{{$deposit->amount}}</td> 
                             <td>{{$deposit->payment_mode}}</td> 
                             <td>{{$deposit->duser->email}}</td> 
                             <td>{{$deposit->status}}</td> 
                             <td>{{$deposit->created_at}}</td> 
                             <td> <a class="btn btn-default" href="{{ url('dashboard/pwithdrawal') }}/{{$deposit->id}}">Process</a></td> 
                        </tr> 
                        @endforeach
 
    