@extends('theme.master')
@section('title', 'Terms & Condition')
@section('content')
@include('admin.message')
@php
$gets = App\Breadcum::first();
@endphp
{{ __('Terms & Condition') }}
- Home
-
- {{ __('Terms & Condition') }}
@php
$data = App\Terms::first();
@endphp
@if(isset($data))
{!! $data->terms !!}
@endif
@endsection