@extends('admin.layouts.app') @section('title', 'Lojas') @section('content')
| Imagem | Nome | Endereço | Telefone | Status | Produtos | Taxa Entrega | Horários | Ações |
|---|---|---|---|---|---|---|---|---|
|
@if($loja->imagem)
|
{{ $loja->nome }}
@if($loja->descricao)
{{ Str::limit($loja->descricao, 50) }} @endif |
{{ Str::limit($loja->endereco, 30) }} | {{ $loja->telefone }} | @switch($loja->status) @case('ativa') Ativa @break @case('inativa') Inativa @break @case('manutencao') Manutenção @break @endswitch | {{ $loja->produtos->count() }} | @if($loja->taxa_entrega) R$ {{ number_format($loja->taxa_entrega, 2, ',', '.') }} @else Grátis @endif | {{ date('H:i', strtotime($loja->horario_abertura)) }} - {{ date('H:i', strtotime($loja->horario_fechamento)) }} |