Flowers

Manage flower varieties, pricing, and stem costs for arrangements.

@forelse($flowers as $flower) @empty @endforelse
Name Stems/Bunch Cost/Bunch Cost/Stem Sale Price/Stem Date Added Actions
{{ $flower->name }} {{ $flower->stems_per_bunch }} {{ $flower->cost_price_bunch->format() }} {{ $flower->cost_price_stem->format() }} {{ $flower->sale_price_stem->format() }} {{ $flower->created_at->format('M d, Y h:i A') }}
@csrf @method('DELETE')

No flowers found. Add your first flower variety.

@if($flowers->hasPages())
@include('partials.pagination', ['paginator' => $flowers])
@endif
@csrf

Add Flower Variety

Define bunch sizes and cost metrics for live estimates.

@error('name')

{{ $message }}

@enderror
@error('stems_per_bunch')

{{ $message }}

@enderror
$
@error('cost_price_bunch')

{{ $message }}

@enderror
$
$
@error('sale_price_stem')

{{ $message }}

@enderror
@csrf @method('patch')

Edit Flower Variety

Modify parameters for the flower variety .

@error('name')

{{ $message }}

@enderror
@error('stems_per_bunch')

{{ $message }}

@enderror
$
@error('cost_price_bunch')

{{ $message }}

@enderror
$
$
@error('sale_price_stem')

{{ $message }}

@enderror