PATH:
home
/
rwabteecom
/
project_11
/
resources
/
views
/
front
/
Editing: index.blade.php
@extends('front.layout.app') @section('content') <div class="page-container container"> @if($domain->header_layout == 'start_aligned') <div class="d-flex align-items-center start_aligned"> @endif @if(!$domain->hide_profile_image) <div class="imger mb-2"> <img src="@if($domain->hasMedia('logo')) {{$domain->getFirstMediaUrl('logo')}} @else {{gs('logo')}} @endif" /> </div> @endif <div> @if(!$domain->hide_profile_title && $domain->site_title) <h1 class="fw-bold fs-5">{{$domain->site_title}}</h1> @endif @if($domain->intro_text) <p class="small"> {{$domain->intro_text}} </p> @endif @if($domain->social_icons_position == 'top' && $domain->socialIcons->where('status', 1)->count() > 0) @include('front.partials.socials', ['domain' => $domain]) @endif </div> @if($domain->header_layout == 'start_aligned') </div> @endif @if(!$domain->hide_community) <div class="d-flex align-items-center justify-content-between mb-4"> <div class="community_number"> <span class="fw-bold text-center d-block"> 1,260 </span> <p class="text-center small mb-0">Followers</p> </div> <div class="community_number"> <span class="fw-bold text-center d-block"> 1,260 </span> <p class="text-center small mb-0">Following</p> </div> <button class="btn btn-primary rounded d-flex align-items-center" type="button"> <i class="bi bi-person-add me-2"></i> Follow </button> </div> @endif <div class="row links-container"> @foreach ($domain->links->where('link_visibility', 'on') as $link) <a target="_blnak" href="{{$link->link}}" class="domain-link @if($domain->layout == 'grid') col-6 grided-link @else full_width_link @endif"> {{$link->title}} </a> @endforeach </div> </div> @endsection
SAVE
CANCEL