JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "index.blade.php"

Full Path: /home2/yvrgircc/public_html/ariseskilltech.com/resources/views/frontend/default/home/index.blade.php
File size: 765 bytes
MIME-type: text/plain
Charset: utf-8

@extends('layouts.default')
@push('title', get_phrase('Home'))
@push('meta')@endpush
@push('css')@endpush
@section('content')
    @php
        if(session('home')){
            $builder = App\Models\Builder_page::where('id', session('home'))->firstOrNew();
        }else{
            $builder = App\Models\Builder_page::where('status', 1)->firstOrNew();
        }
    @endphp
    @if($builder->is_permanent)
        @include('components.home_permanent_templates.'.$builder->identifier)
    @else
        @php $builder_files = $builder->html ? json_decode($builder->html, true) : []; @endphp
        @foreach ($builder_files as $builder_file_name)
            @include('components.home_made_by_builder.'.$builder_file_name)
        @endforeach
    @endif
@endsection