pai-sklep/resources/views/index.blade.php

12 lines
284 B
PHP

@extends('layouts.app')
@section('title', "Sklep")
@section('main')
<div style="display: flex; flex-wrap: wrap; justify-content: space-around; margin: 1em;">
@foreach ($products as $product)
<x-product :product="$product" />
@endforeach
</div>
@endsection()