2017-09-14 22:21:00 +03:00
@ extends ( 'layouts.admin' )
@ section ( 'title' , trans_choice ( 'general.revenues' , 2 ))
@ section ( 'new_button' )
2019-12-31 15:49:09 +03:00
@ permission ( 'create-sales-revenues' )
2019-11-16 10:21:14 +03:00
< span >< a href = " { { route('revenues.create') }} " class = " btn btn-primary btn-sm btn-success header-button-top " >< span class = " fa fa-plus " ></ span > & nbsp ;{{ trans ( 'general.add_new' ) }} </ a ></ span >
2019-12-31 15:49:09 +03:00
< span >< a href = " { { url('common/import/sales/revenues') }} " class = " btn btn-white btn-sm header-button-top " >< span class = " fa fa-upload " ></ span > & nbsp ;{{ trans ( 'import.import' ) }} </ a ></ span >
2019-11-16 10:21:14 +03:00
@ endpermission
< span >< a href = " { { route('revenues.export', request()->input()) }} " class = " btn btn-white btn-sm header-button-top " >< span class = " fa fa-download " ></ span > & nbsp ;{{ trans ( 'general.export' ) }} </ a ></ span >
2018-06-11 03:47:32 +03:00
@ endsection
2017-09-14 22:21:00 +03:00
@ section ( 'content' )
2019-12-12 19:15:20 +03:00
@ if ( $revenues -> count ())
< div class = " card " >
< div class = " card-header border-bottom-0 " v - bind : class = " [bulk_action.show ? 'bg-gradient-primary' : ''] " >
{ !! Form :: open ([
2019-12-31 15:49:09 +03:00
'url' => 'sales/revenues' ,
2019-12-12 19:15:20 +03:00
'role' => 'form' ,
'method' => 'GET' ,
'class' => 'mb-0'
]) !! }
< div class = " row " v - if = " !bulk_action.show " >
2019-12-16 17:03:53 +03:00
< div class = " col-12 d-flex align-items-center " >
< span class = " font-weight-400 d-none d-lg-block mr-2 " > {{ trans ( 'general.search' ) }} :</ span >
2019-12-12 19:15:20 +03:00
< akaunting - search ></ akaunting - search >
</ div >
2019-11-16 10:21:14 +03:00
</ div >
2019-12-31 15:49:09 +03:00
{{ Form :: bulkActionRowGroup ( 'general.revenues' , $bulk_actions , 'sales/revenues' ) }}
2019-12-12 19:15:20 +03:00
{ !! Form :: close () !! }
</ div >
2019-11-16 10:21:14 +03:00
2019-12-12 19:15:20 +03:00
< div class = " table-responsive " >
< table class = " table table-flush table-hover " >
< thead class = " thead-light " >
< tr class = " row table-head-line " >
2019-12-16 17:03:53 +03:00
< th class = " col-sm-2 col-md-2 col-lg-1 col-xl-1 d-none d-sm-block " > {{ Form :: bulkActionAllGroup () }} </ th >
2020-01-13 19:26:25 +03:00
< th class = " col-xs-4 col-sm-4 col-md-3 col-lg-2 col-xl-2 " >@ sortablelink ( 'paid_at' , trans ( 'general.date' ), [ 'filter' => 'active, visible' ], [ 'class' => 'col-aka' , 'rel' => 'nofollow' ]) </ th >
< th class = " col-xs-4 col-sm-4 col-md-3 col-lg-2 col-xl-2 text-right " >@ sortablelink ( 'amount' , trans ( 'general.amount' )) </ th >
< th class = " col-md-2 col-lg-2 col-xl-3 d-none d-md-block text-center " >@ sortablelink ( 'contact.name' , trans_choice ( 'general.customers' , 1 )) </ th >
< th class = " col-lg-2 col-xl-2 d-none d-lg-block text-left " >@ sortablelink ( 'category.name' , trans_choice ( 'general.categories' , 1 )) </ th >
< th class = " col-lg-2 col-xl-1 d-none d-lg-block text-left " >@ sortablelink ( 'account.name' , trans_choice ( 'general.accounts' , 1 )) </ th >
2019-12-12 19:15:20 +03:00
< th class = " col-xs-4 col-sm-2 col-md-2 col-lg-1 col-xl-1 text-center " >< a > {{ trans ( 'general.actions' ) }} </ a ></ th >
</ tr >
</ thead >
2019-11-16 10:21:14 +03:00
2019-12-12 19:15:20 +03:00
< tbody >
@ foreach ( $revenues as $item )
@ php $is_transfer = ( $item -> category && ( $item -> category -> id == $transfer_cat_id )); @ endphp
< tr class = " row align-items-center border-top-1 " >
2019-12-16 17:03:53 +03:00
< td class = " col-sm-2 col-md-2 col-lg-1 col-xl-1 d-none d-sm-block " > {{ Form :: bulkActionGroup ( $item -> id , $item -> contact -> name ) }} </ td >
2019-12-12 19:15:20 +03:00
@ if ( $item -> reconciled )
2020-01-13 19:26:25 +03:00
< td class = " col-xs-4 col-sm-4 col-md-3 col-lg-2 col-xl-2 " >@ date ( $item -> paid_at ) </ td >
2019-12-12 19:15:20 +03:00
@ else
2020-01-13 19:26:25 +03:00
< td class = " col-xs-4 col-sm-4 col-md-3 col-lg-2 col-xl-2 " >< a class = " text-success col-aka " href = " { { route('revenues.edit', $item->id ) }} " >@ date ( $item -> paid_at ) </ a ></ td >
2019-12-12 19:15:20 +03:00
@ endif
2020-01-13 19:26:25 +03:00
< td class = " col-xs-4 col-sm-4 col-md-3 col-lg-2 col-xl-2 text-right " >@ money ( $item -> amount , $item -> currency_code , true ) </ td >
< td class = " col-md-2 col-lg-2 col-xl-3 d-none d-md-block text-center " > {{ ! empty ( $item -> contact -> name ) ? $item -> contact -> name : trans ( 'general.na' ) }} </ td >
< td class = " col-lg-2 col-xl-2 d-none d-lg-block text-left " > {{ $item -> category ? $item -> category -> name : trans ( 'general.na' ) }} </ td >
< td class = " col-lg-2 col-xl-1 d-none d-lg-block text-left " > {{ $item -> account ? $item -> account -> name : trans ( 'general.na' ) }} </ td >
2019-12-12 19:15:20 +03:00
< td class = " col-xs-4 col-sm-2 col-md-2 col-lg-1 col-xl-1 text-center " >
@ if ( ! $is_transfer )
< div class = " dropdown " >
< a class = " btn btn-neutral btn-sm text-light items-align-center py-2 " href = " # " role = " button " data - toggle = " dropdown " aria - haspopup = " true " aria - expanded = " false " >
< i class = " fa fa-ellipsis-h text-muted " ></ i >
</ a >
< div class = " dropdown-menu dropdown-menu-right dropdown-menu-arrow " >
2019-11-16 10:21:14 +03:00
@ if ( ! $item -> reconciled )
2019-12-12 19:15:20 +03:00
< a class = " dropdown-item " href = " { { route('revenues.edit', $item->id ) }} " > {{ trans ( 'general.edit' ) }} </ a >
2019-11-16 10:21:14 +03:00
< div class = " dropdown-divider " ></ div >
@ endif
2019-12-31 15:49:09 +03:00
@ permission ( 'create-sales-revenues' )
2019-12-12 19:15:20 +03:00
< a class = " dropdown-item " href = " { { route('revenues.duplicate', $item->id ) }} " > {{ trans ( 'general.duplicate' ) }} </ a >
@ endpermission
2019-12-31 15:49:09 +03:00
@ permission ( 'delete-sales-revenues' )
2019-12-12 19:15:20 +03:00
@ if ( ! $item -> reconciled )
< div class = " dropdown-divider " ></ div >
2019-12-31 15:49:09 +03:00
{ !! Form :: deleteLink ( $item , 'sales/revenues' ) !! }
2019-12-12 19:15:20 +03:00
@ endif
@ endpermission
</ div >
2019-11-16 10:21:14 +03:00
</ div >
2019-12-12 19:15:20 +03:00
@ else
< div class = " dropdown " >
< button class = " btn btn-secondary btn-sm text-light items-align-center py-2 " href = " # " role = " button " data - toggle = " tooltip " aria - haspopup = " true " aria - expanded = " false " title = " This Transfer, If you want to action redirect " >
< i class = " fa fa-exchange-alt text-muted " ></ i >
</ button >
</ div >
@ endif
</ td >
</ tr >
@ endforeach
</ tbody >
</ table >
</ div >
2017-09-14 22:21:00 +03:00
2019-12-12 19:15:20 +03:00
< div class = " card-footer table-action " >
< div class = " row " >
2019-12-24 17:53:18 +03:00
@ include ( 'partials.admin.pagination' , [ 'items' => $revenues ])
2019-12-12 19:15:20 +03:00
</ div >
2019-11-16 10:21:14 +03:00
</ div >
</ div >
2019-12-12 19:15:20 +03:00
@ else
2019-12-31 15:49:09 +03:00
@ include ( 'partials.admin.empty_page' , [ 'page' => 'revenues' , 'docs_path' => 'sales/revenues' ])
2019-12-12 19:15:20 +03:00
@ endif
2017-09-14 22:21:00 +03:00
@ endsection
2019-11-16 10:21:14 +03:00
@ push ( 'scripts_start' )
2019-12-31 15:49:09 +03:00
< script src = " { { asset('public/js/sales/revenues.js?v=' . version('short')) }} " ></ script >
2018-11-02 11:32:42 +03:00
@ endpush