@extends('layouts.app')
@section('title','Partners')
@section('content')
@include('partners::layouts.nav')
@component('components.widget', ['class' => 'box-primary', 'title' =>''])
@can('assets.create')
@slot('tool')
{!! Form::label('partner_id','Parter') !!}
{!! Form::select('partner_id', $partners, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' =>'All']); !!}
{!! Form::label('type','Transaction Type') !!}
{!! Form::select('type', ['0'=>'All','1'=>'Withdraw','2'=>'Deposit'], null, ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
@endslot
@endcan
@can('assets.view')
| Name |
Value |
History |
Transaction Type |
Added By |
Notes |
Action |
@endcan
@endcomponent
{{--Create Model --}}
@endsection
@section('javascript')
@endsection