Posts

Showing posts with the label books

Crud of books

 books/index.php <!-- resources/views/books/index.blade.php --> <x-app-layout>     <div class="container mx-auto p-4">         <div class="flex justify-between items-center mb-4">             <h1 class="text-2xl font-bold">Books</h1>             <!-- Search Form -->             <form method="GET" action="{{ route('books.index') }}" class="flex items-center space-x-2">                 <input type="text" name="search" value="{{ request('search') }}" placeholder="Search by title or author" class="px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm">                 <button type="submit" class="bg-blue-500 text-white px-4 py-2 rounded">Search</button...