@extends('layouts.default_module') @section('module_name') Sell Points @stop @section('table-properties') width="400px" style="table-layout:fixed;" @endsection @section('table') {!! Form::open(['method' => 'post', 'route' => ['sell_points.search'], 'files'=>true]) !!} @include('admin.sell_points.partial.searchfilters') {!!Form::close() !!} Name Email Sell Points Cost Status @foreach($sell_points as $sp) {!! ucwords($sp->user->name) !!} {!! ucwords($sp->user->email) !!} {!! ucwords($sp->sellpoints) !!} {!! $sp->cost !!}
Notice: Undefined variable: sp in /home/demohatinco/public_html/my_shout_backend/resources/views/admin/sell_points/index.blade.php on line 61

Notice: Trying to get property 'status' of non-object in /home/demohatinco/public_html/my_shout_backend/resources/views/admin/sell_points/index.blade.php on line 61

Notice: Undefined variable: sp in /home/demohatinco/public_html/my_shout_backend/resources/views/admin/sell_points/index.blade.php on line 64

Notice: Trying to get property 'status' of non-object in /home/demohatinco/public_html/my_shout_backend/resources/views/admin/sell_points/index.blade.php on line 64
Pending @include('admin.sell_points.partial.confirmation_modal', [ 'order_id'=>$sp->id, 'cell_id'=>'td_'.$sp->id, 'req_status'=>'inprogress_request_'.$sp->id, 'url'=>asset('admin/sellpoints/status_update/'.$sp->id), 'status'=>'Confirm', 'msg_status'=>'confirm', 'btn_class'=>'btn-primary' ]) {{-- Reject @include('admin.sell_points.partial.confirmation_modal', [ 'order_id'=>$sp->id, 'cell_id'=>'td_'.$sp->id, 'req_status'=>'reject_request_'.$sp->id, 'url'=>asset('admin/sellpoints/status_update/'.$sp->id), 'status'=>'rejected', 'msg_status'=>'reject', 'btn_class'=>'btn-danger' ]) --}}
{!! ucwords($sp->status) !!}
@endforeach @section('pagination') {!! $sell_points->render() !!}
{!! Form::open(['method' => 'get', 'route' => ['dashboard']]) !!} {!! Form::submit('Cancel', ['class' => 'btn btn-default btn-block btn-lg btn-parsley']) !!} {!! Form::close() !!}
@endsection @stop @section('app_jquery') @endsection