@extends('layouts.master')
@section('styles')
@endsection
@section('content')
@php
$breadcrumbs = [
['label' => 'Dashboard', 'url' => route('admin.dashboard')],
['label' => 'Offer Postback Log', 'url' => '#', 'active' => true],
];
@endphp
@php
$columns = [
['label' => '#'],
['label' => 'Offer'],
['label' => 'User'],
['label' => 'Click Hash'],
['label' => 'Click Time'],
['label' => 'Redirect'],
['label' => 'Postback'],
['label' => 'Status'],
['label' => 'Reward'],
['label' => 'Event'],
['label' => 'View Detail'],
];
@endphp
@endsection
@slot('footer')
@endslot
@section('scripts')
@include('layouts.components.common-script')
@endsection