@extends('layouts.master') @section('title', 'Pos Sessions | Alboosh - Timeless authenticity, born of the desert') @section('title-topbar', __('basic.pos sessions')) @section('css') @endsection @section('fixedcontent') @if (Session::has('success'))

Sent Successfully

{{ Session::get('success') }}

@endif @endsection @section('content')
{{ __('basic.dashboard') }} | {{ __('basic.pos sessions') }}
{{ __('basic.pos sessions') }}
@foreach ($sessions as $item) @endforeach
{{ __('basic.id') }} {{ __('basic.name') }} {{ __('basic.worker') }} {{ __('basic.balance') }} {{ __('basic.start') }} {{ __('basic.end') }} {{ __('basic.worker') }} {{ __('basic.handle') }}
{{ $item->id }} {{ $item->name }} {{ $item->worker->full_name }} {{ $item->end_balance }} {{ date('d M Y | h:i a', strtotime($item->started_at)) }}

@if($item->active == 0) {{ date('d M Y | h:i a', strtotime($item->ended_at)) }}

@else {{ __('basic.session is still open') }} @endif
{{ $item->worker->full_name }} @if($item->active == 1) @endif {{-- --}}
@endsection @section('js') @endsection