@extends('adminlte::page')
@section('title', 'MBP:: Gestion des shops')
@section('content_header')
Magasins
@stop
@section('content')
Nom |
Slug |
Adresse |
Date Edition |
|
|
@foreach( $shops as $shop )
{{ $shop->name }} |
{{ $shop->friendlyurl }} |
{{ $shop->street .' - '. $shop->zip .' '. $shop->city }} - Belgique |
{{ $shop->updated_at ? $shop->updated_at->format('d.m.Y H:i') : '' }} |
|
|
@endforeach
@stop
@section('js')
@stop