Path : /var/www/html/moneyexchange/resources/views/transfer/reports/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/html/moneyexchange/resources/views/transfer/reports/transferReport.blade.php |
@extends('layouts.main') @section('content') <div class="page-wrapper"> <div class="page-breadcrumb"> <div class="row"> <div class="col-12 d-flex no-block align-items-center"> <h4 class="page-title">{{__('message.transfer report')}}</h4> </div> </div> </div> <div class="container-fluid" style="padding-top: 0px;"> <div class="row"> <div class="col-12"> <div class="card"> <div class="card-body"> <div class="row"> <form method="get" id="search-form"> <div class="col-sm-12 col-xs-12 row"> <div class="col-md-2 col-xs-6"> <input type="text" id="datepicker_start" class="form-control hasDatepicker" name="start_date" title="{{__('message.start date')}}" value="{{$start_date}}" placeholder="{{__('message.start date')}}" readonly=""> </div> <div class="col-md-2 col-xs-6"> <input type="text" id="datepicker_end" class="form-control hasDatepicker" name="end_date" title="{{__('message.end date')}}" value="{{$end_date}}" placeholder="{{__('message.end date')}}" readonly=""> </div> <div class="col-md-2 col-xs-6"> <select name="currency_id" id="pet-select" class="form-control"> <option value="">{{__('message.all currencies')}}</option> @foreach($currencies as $index=>$currency) <option value="{{$currency->id}}" @if($currency->id==$currency_id) selected @endif> {{$currency->name}} </option> @endforeach </select> </div> @if(Auth::user()->role_id==2) <div class="col-md-2 col-xs-6"> <select name="user_id" id="pet-select" class="form-control"> <option value="">{{__('message.all staff')}}</option> @foreach($users as $index=>$user) <option value="{{$user->id}}" @if($user->id==$user_id) selected @endif> {{$user->name}} </option> @endforeach </select> </div> @endif <div class="col-md-3 col-xs-6" style="padding-bottom:10px;"> <button type="submit" class="btn btn-primary btn-sm"> <i class="fa fa-search"></i> {{__('message.search')}} </button> <a href="{{route('bank-account-transactions.index')}}" type="reset" class="btn btn-sm"> <i class="fa fa-refresh"></i> <span class="hidden-xs">{{__('message.refresh')}}</span> </a> </div> </div> <div class="col-sm-12 col-xs-12"> @include('app.search-button') </div> </form> </div> <div class="table-responsive"> <table id="zero_config" class="table table-striped table-bordered"> <thead> <tr> <th>#</th> <th>{{__('message.bank')}}</th> <th>{{__('message.from')}}{{__('message.bank account')}}</th> <th>{{__('message.to')}}{{__('message.bank account')}}</th> <th>{{__('message.sender name')}}</th> <th>{{__('message.sender phone')}}</th> <th>{{__('message.receiver name')}}</th> <th>{{__('message.receiver phone')}}</th> <th>{{__('message.code')}}</th> <th>{{__('message.amount')}}</th> <th>{{__('message.partner fee')}}</th> <th>{{__('message.fee')}}</th> <th>{{__('message.note')}}</th> <th>{{__('message.created by')}}</th> <th>{{__('message.created date')}}</th> <th>{{__('message.action')}}</th> </tr> </thead> <tbody> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> @endsection @section("scripts") <script> jQuery("#datepicker_start").datepicker({ format: 'yyyy-mm-d', autoclose: true, todayHighlight: true }); jQuery("#datepicker_end").datepicker({ format: 'yyyy-mm-d', autoclose: true, todayHighlight: true }); </script> @endsection @section('meta') <title>{{__('message.transfer report')}}</title> @endsection