43 lines
1.8 KiB
PHP
43 lines
1.8 KiB
PHP
@extends('layouts.user')
|
|
|
|
@section('title', 'Paket Foto - Florist dan Self Photo Studio Nganjuk')
|
|
|
|
@section('content')
|
|
<section class="section-bookingfoto">
|
|
<div class="container">
|
|
|
|
<div class="row justify-content-center mb-2">
|
|
<div class="col-lg-8 text-center">
|
|
<h2 class="bookingfoto-title mb-2">Pilihan Paket Foto</h2>
|
|
<p class="text-muted">Temukan beragam paket foto eksklusif dari Flo.do untuk momen terbaikmu</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-12" style="max-width: 850px; margin: 0 auto;">
|
|
<div class="row row-cols-2 row-cols-md-3 row-cols-lg-4 justify-content-center">
|
|
|
|
@for ($i = 1; $i <= 8; $i++)
|
|
<div class="col">
|
|
<div class="bookingfoto-card h-100">
|
|
<div class="img-wrapper mb-3">
|
|
<img src="{{ asset('img/hero-foto.jpg') }}" class="img-fluid rounded-4"
|
|
alt="Paket Foto">
|
|
</div>
|
|
<div class="text-left">
|
|
<h6 class="bookingfoto-product-title">Paket Self Photo {{ $i }}</h6>
|
|
<p class="bookingfoto-product-price">Rp 85.000</p>
|
|
</div>
|
|
<a href="{{ route('detail.foto') }}" class="stretched-link"></a>
|
|
</div>
|
|
</div>
|
|
@endfor
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
@endsection
|