@extends('admin.layouts.app') @section('title', 'All Rentals') @section('section') @php if (!empty($rentals->content)) { // Decode the 'content' JSON string into an associative array. $decodedData = json_decode($rentals->content, true); } @endphp

Rentals Form

@csrf

Rentals Section



Rentals Section

@foreach($get_rentals as $get_rental) @endforeach
Title Capacity Standard Image Edit Delete
{{$get_rental->title}} {{ isset($get_rental->capacity) ? number_format($get_rental->capacity) : '' }} {{ isset($get_rental->price) ? number_format($get_rental->price) : '' }} Edit Delete
@endsection @section('script') @endsection