@extends('layouts.app') @section('content')
@include('includes.alerts')
Lista de Preços
@if(Auth::user()->id_perfil == 2 || Auth::user()->id_perfil == 3)
Cadastrar pesquisa
@endif
@forelse ($lista_preco_concorrentes as $lista_preco) @empty @endforelse
Fornecedor Supermercado Promotor Data
#{{ $lista_preco->id_preco_concorrente }} {{ $lista_preco->nome_fornecedor }} {{ $lista_preco->nome_supermercado }} {{ $lista_preco->nome_promotor }} @php $date=date_create($lista_preco->created_at); @endphp {{ $lista_preco->created_at != null ? date_format($date,"d/m/Y H:i") : '-' }}
@if(Auth::user()->id_perfil == 1 || Auth::user()->id_perfil == 2) @endif @if(Auth::user()->id_perfil == 3) @endif @if(Auth::user()->id_perfil == 1 || Auth::user()->id_perfil == 2) @endif
Nenhum Preco Concorrente encontrada.
@if($lista_preco_concorrentes->total() > 30)
{{ $lista_preco_concorrentes->appends(request()->input())->links() }}
@endif
@endsection