Skip to content

Commit

Permalink
update information page
Browse files Browse the repository at this point in the history
  • Loading branch information
nesaathussholeha committed Nov 15, 2024
1 parent c991953 commit a045f1e
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions resources/views/school/pages/settings/information.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,14 @@
alt="{{ $school->user->name }}">
<div class="d-flex flex-column flex-sm-row justify-content-between w-100 ms-3">
<div>
<h3 class="mb-1">{{ $school->user->name }}</h3>
<span class="badge font-medium bg-light-primary text-primary">{{ $school->type }}</span>
<div class="d-flex align-items-center mb-2">
<h3 class="mb-1 me-2">{{ $school->user->name }}</h3>
<span class="badge font-medium bg-light-primary text-primary">{{ $school->type }}</span>
</div>
<p>{{ $school->description != null ? Str::limit($school->description, 100) : '-' }}</p>

</div>

<div>
<h5 class="mb-1">Tahun Ajaran</h5>
<h5>{{ $schoolYear->school_year }}</h5>
Expand Down Expand Up @@ -57,10 +62,6 @@
<h6>Akreditasi :</h6>
<p>{{ $school->accreditation }}</p>
</div>
<div class="d-flex justify-content-between">
<h6>Deskripsi :</h6>
<p>{{ $school->description != null ? Str::limit($school->description, 200) : '-' }}</p>
</div>
<div class="d-flex justify-content-between">
<h6>Alamat:</h6>
<div class="ms-5">
Expand Down Expand Up @@ -132,4 +133,4 @@

@section('script')
@include('school.pages.settings.scripts.script-index')
@endsection
@endsection

0 comments on commit a045f1e

Please sign in to comment.