@extends('base')
@section('title')
tracking
@endsection
@section('content')
@include('sessions')
Debe generar el BL para ver el tracking
@foreach ($trackings as $tracking)
@endforeach
Item |
Fecha |
Location |
Activity |
{{$loop->iteration}} |
{{ $tracking->date }} |
{{ $tracking->location }} |
{{ $tracking->activity }} |
@if ($bl?->id!=null)
@include('bl.modals.addTracking')
@endif
@endsection
@section('extrajs')
@endsection