@extends('layouts.app') @section('content')

{{__('Rent list')}}

@foreach($rents as $rent) color) style="background-color:{{$rent->color}}" @endif> @endforeach
{{__('Brand')}} {{__('Type')}} {{__('Plate number')}} {{__('Worker')}} {{__('Owner')}} {{__('Company')}} {{__('Rent date')}} {{__('Return date')}} {{__('Last change')}}
{{$rent->marka}} {{$rent->tip}} {{$rent->reg_br}} {{$rent->name.' '.$rent->surname}} {{$rent->owner}} {{$rent->company}} @if($rent->rent_date){{date('d.m.Y H:i:s', strtotime($rent->rent_date))}}@endif @if($rent->return_date){{date('d.m.Y H:i:s', strtotime($rent->return_date))}}@endif {{$rent->editor_name.' '.$rent->editor_surname}} @if(in_array(Auth::user()->id, $allowedUsers)) @endif id}}>
@endsection