@extends('layouts_frontend.master')
@section('title','Home')
@section('content')
{{$banner->title}}
{!! $banner->description !!}
@if($site_config[6]->permission == 'show_all')
@include('frontend.partial.partial_partner')
@elseif($site_config[6]->permission == 'show_customer')
@role('customer')
@include('frontend.partial.partner')
@endrole
@endif
@if($site_config[1]->permission == 'show_all')
@include('frontend.partial.partial_about_us')
@elseif($site_config[1]->permission == 'show_customer')
@role('customer')
@include('frontend.partial.partial_about_us')
@endrole
@endif
@if($site_config[3]->permission == 'show_all')
@include('frontend.partial.partial_why_us')
@elseif($site_config[3]->permission == 'show_customer')
@role('customer')
@include('frontend.partial.partial_why_us')
@endrole
@endif
@if($site_config[0]->permission == 'show_all')
@include('frontend.partial.partial_services')
@elseif($site_config[0]->permission == 'show_customer')
@role('customer')
@include('frontend.partial.partial_services')
@endrole
@endif
@if($site_config[4]->permission == 'show_all')
@include('frontend.partial.partial_teams')
@elseif($site_config[4]->permission == 'show_customer')
@role('customer')
@include('frontend.partial.partial_teams')
@endrole
@endif
@if($site_config[5]->permission == 'show_all')
@include('frontend.partial.partial_testimonials')
@elseif($site_config[5]->permission == 'show_customer')
@role('customer')
@include('frontend.partial.partial_testimonials')
@endrole
@endif
@endsection
@section('extra-script')
@endsection