@extends('admin.layout') @section('custom-style') @endsection @section('content') @php $date = (isset($_GET['date'])) ? $_GET['date'] : ''; @endphp @php $searchText = (isset($_GET['searchText'])) ? $_GET['searchText'] : ''; @endphp Live PPV Configuration Live PPV Configuration All All Live PPV configuration @if(check_Permission('Production Team', 'create')) Add New Live PPV Configuration @endif @if(\Session::has('delete')) {!! \Session::get('delete') !!} @endif # PPV duration range Price(in USD) Content Acceptance Commission(in USD) Created on Action @if(isset($ppv_configurations)) @foreach($ppv_configurations as $ppv) {{$loop->iteration}} {{$ppv->start_range . " minutes - " . $ppv->end_range . " minutes"}} {{$ppv->amount}} {{$ppv->content_acceptance_commission}} {{$ppv->created_at->format('d M, Y')}} @if(check_Permission('Production Team', 'edit')) @endif @if(check_Permission('Production Team', 'delete')) @endif @endforeach @endif @endsection @section('custom-scripts') @endsection