services done

This commit is contained in:
2025-06-05 15:19:12 +05:45
parent 18e5f8f173
commit 01785b7bb9
21 changed files with 691 additions and 8 deletions

View File

@ -0,0 +1,16 @@
@extends('layouts.app')
@section('content')
<div class="container">
<h1>{{ $service->title }}</h1>
<p>{{ $service->description }}</p>
@if($service->image)
<img src="{{ asset('storage/' . $service->image) }}" width="300">
@endif
@if($service->button_url)
<p><a href="{{ $service->button_url }}" target="_blank" class="btn btn-info">Visit</a></p>
@endif
</div>
@endsection