@extends('inventory.layout') @section('title', 'Dashboard') @section('content') @push('head') @endpush

{{isset($item) ? $item:''}}

{{ __('Fahrzeuge')}}

{{ isset($usercount) ? $usercount:''}}

{{ __('Benutzer')}}

{{ __('Neue Angebote')}}

@foreach($newitem as $item) @endforeach
{{ __('Bilder')}} {{ __('Name')}} {{ __('Marke')}} {{ __('Kraftstoffart')}}
@if(isset($item->vehicledetail['bilder'])) @else @endif {{ isset($item->name) ? $item->name:''}} {{ isset($item->branddetail->name) ? $item->branddetail->name:''}} {{ isset($item->kraftstoffart) ? $item->kraftstoffart:''}}

{{ __('Neue Benutzer')}}

@foreach($users as $user)
{{ isset($user->name) ? $user->name:'' }}
{{ isset($user->phone) ? $user->phone:'' }}
{{Carbon\Carbon::parse($user->created_at)->format('d M')}}
@endforeach
@push('script') @endpush @endsection