Skip to content

Asiedu13/bookshelf-bliss

Repository files navigation

BookshelfBliss-Laravel v1.0

Expand your knowledge bank with the best book service platform on the internet. All genres of books and a system that keeps you, your books and everyone else connected.

Table of contents

Overview

An application that connects you with the stories you resonate with

The challenge

Users should be able to:

  • Find books.
  • Read and bookmark
  • Receive insights from authors and other readers

Screenshot

The Solution

Links

My process

Selecting the Tools / Technologies

This project uses Laravel/PHP with Liveiwre.

Planning the Layouts

I then took the time to consider the various views and UI components that would be needed for the application.

Building the Views

I then wrote code for everything planned and still planning

Built with

  • Laravel
  • Livewire
  • Tailwindcss
  • Flexbox
  • fontawesome

What I learned

This project helped me learn about the various features of Laravel and Livewire. From blade components to Livewire components, properties, layouts and slots to all the abstractions Laravel undertakes to keep the application fast at all levels.

This project also allowed me to

  • implement tailwindcss in a Laravel App
 <section class="w-[fit-content] h-1/2">
              <section clas='py-4'>
                <h1 class='text-7xl font-bold pb-5 '> {{$city}}, {{$name}}</h1>
                <p> {{$today}}</p>
                </section>
 <section />
    ...
    public $city = "";
    public $name = "";
    public $today = "";

    public function mount($city, $name, $today)
    {
        $this->city = $city;
        $this->name = $name;
        $this->today = $today;
    }


    ...
...

<Livewire:component-name city="" name="" today="">

...

Continued development

Useful resources

However, I am open to alternatives so reach out to me if you have any.

Author

Acknowledgments

API(s) Used

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages