KevinCasoco / waste-disposal-tracking-system

Waste Disposal Tracking System for District 3 of Caloocan City our capstone project.
https://wastedisposaltrackingsystem-2024.com/
1 stars 0 forks source link

Making Blade File Maintainable and Readable #56

Closed KevinCasoco closed 8 months ago

KevinCasoco commented 8 months ago

the template you must need to follow

@yield('title') @yield('content') @yield('scripts')

@extends('master')

@section('title', 'Page Title')

@section('content')

This is the page content.

@endsection

@section('scripts')

<script src="path/to/your/script.js"></script>

@endsection

@extends('master')

@section('title', 'Another Page')

@section('content')

This is another page content.

@endsection

@section('scripts')

<script src="path/to/another/script.js"></script>

@endsection

ref: https://chat.openai.com/c/2d0a3fb6-4891-4295-9de5-9cdb5b2ed5c5

KevinCasoco commented 8 months ago

WIP

KevinCasoco commented 8 months ago

implemented!