Skip to content

Instantly share code, notes, and snippets.

@Rizki36
Created July 23, 2021 15:55
Show Gist options
  • Save Rizki36/67398a1ca2cc68850104e2a6f48b7bbc to your computer and use it in GitHub Desktop.
Save Rizki36/67398a1ca2cc68850104e2a6f48b7bbc to your computer and use it in GitHub Desktop.
@extends('layout/index')
@section('title', 'Title spesifik view')
@section('css')
{{-- css spesifik --}}
<style>
span {
display: block;
background: rgb(246, 173, 173);
}
</style>
@endsection
@section('content')
{{-- penggunaan variabel --}}
{{ $name }}
<span>Isi kontent</span>
@endsection
@section('js')
{{-- js spesifik --}}
<script>
</script>
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment